summary refs log tree commit diff
path: root/pkgs/development/tools/pypi2nix
diff options
context:
space:
mode:
authorSebastian Jordan <sebastian.jordan.mail@googlemail.com>2019-12-08 15:18:12 +0100
committerLassulus <github@lassul.us>2019-12-09 07:52:02 +0100
commitce1760abe552c5e5bef1b482d592f91a7b466071 (patch)
tree030368a9a263155ffc326941ebc3ff17e81e3f59 /pkgs/development/tools/pypi2nix
parent8dcd65d549120a4213c7fe50db8fdab666ef4a66 (diff)
downloadnixpkgs-ce1760abe552c5e5bef1b482d592f91a7b466071.tar
nixpkgs-ce1760abe552c5e5bef1b482d592f91a7b466071.tar.gz
nixpkgs-ce1760abe552c5e5bef1b482d592f91a7b466071.tar.bz2
nixpkgs-ce1760abe552c5e5bef1b482d592f91a7b466071.tar.lz
nixpkgs-ce1760abe552c5e5bef1b482d592f91a7b466071.tar.xz
nixpkgs-ce1760abe552c5e5bef1b482d592f91a7b466071.tar.zst
nixpkgs-ce1760abe552c5e5bef1b482d592f91a7b466071.zip
pypi2nix: 2.0.1 -> 2.0.2
Since the source distribution of the package on pypi2nix does not contain unittests,
we removed the checkPhase command that was present in earlier versions of the package.
Diffstat (limited to 'pkgs/development/tools/pypi2nix')
-rw-r--r--pkgs/development/tools/pypi2nix/default.nix8
1 files changed, 3 insertions, 5 deletions
diff --git a/pkgs/development/tools/pypi2nix/default.nix b/pkgs/development/tools/pypi2nix/default.nix
index 6f8ef1b30a9..76302824d9d 100644
--- a/pkgs/development/tools/pypi2nix/default.nix
+++ b/pkgs/development/tools/pypi2nix/default.nix
@@ -4,13 +4,11 @@ with python3;
 
 pkgs.buildPythonApplication rec {
   pname = "pypi2nix";
-  version = "2.0.1";
+  version = "2.0.2";
   src = pkgs.fetchPypi {
     inherit pname version;
-    sha256 = "138fwd3cznkfa6w3a5s4fbflh88q26hk4grlmq73dcbk06ykf84k";
+    sha256 = "1kynyarqx49j89nxd7rx8mjncg8hkklscfcr36smham7cvj17nsv";
   };
-  checkInputs = with pkgs; [ pytest ];
-  buildInputs = with pkgs; [ setuptools_scm ];
   propagatedBuildInputs = with pkgs; [
     attrs
     click
@@ -20,6 +18,6 @@ pkgs.buildPythonApplication rec {
     parsley
     setuptools
     toml
+    jsonschema
   ];
-  checkPhase = "${python3.interpreter} -m pytest unittests -m 'not nix'";
 }