9 lines
176 B
Nix
9 lines
176 B
Nix
{python3Packages}:
|
|
with python3Packages;
|
|
buildPythonApplication {
|
|
name = "follow-hive-nixpkgs";
|
|
pyproject = true;
|
|
build-system = [setuptools];
|
|
src = ./.;
|
|
}
|