summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorRonny Pfannschmidt <opensource@ronnypfannschmidt.de>2020-05-21 22:53:59 +0200
committerRonny Pfannschmidt <opensource@ronnypfannschmidt.de>2020-05-21 22:53:59 +0200
commit613630f74f7cd2c12bb6e02d2cf01f4c83987168 (patch)
tree0719b218ee25a96102bbfa3aada88b25a7461f6b
parentea08eddf6015ac07a52f531261fad62c82da4125 (diff)
downloadsetuptools-scm-613630f74f7cd2c12bb6e02d2cf01f4c83987168.tar.gz
drop default.nix
-rw-r--r--default.nix14
1 files changed, 0 insertions, 14 deletions
diff --git a/default.nix b/default.nix
deleted file mode 100644
index 5305bec..0000000
--- a/default.nix
+++ /dev/null
@@ -1,14 +0,0 @@
-{pkgs ? import <nixpkgs> {}}:
-with pkgs.pythonPackages;
-buildPythonPackage {
- name = "setuptools_scm";
- src = ./.;
- version = "git";
- buildInputs = [
- setuptools
- pip
- pytest
- pkgs.git
- pkgs.mercurial
- ];
-}