We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 4a365d2 commit 9f360e6Copy full SHA for 9f360e6
default.nix
@@ -0,0 +1,9 @@
1
+{pkgs ? import <nixpkgs> {}}:
2
+with pkgs.pythonPackages;
3
+buildPythonPackage {
4
+ name = "setuptools_scm";
5
+ src = ./.;
6
+ version = "git";
7
+ buildInputs = [setuptools pip pytest pkgs.git pkgs.mercurial];
8
+}
9
+
0 commit comments