Skip to content

Commit 9f360e6

Browse files
add minimal nix shell config
1 parent 4a365d2 commit 9f360e6

File tree

1 file changed

+9
-0
lines changed

1 file changed

+9
-0
lines changed

default.nix

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -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

Comments
 (0)