From ce1760abe552c5e5bef1b482d592f91a7b466071 Mon Sep 17 00:00:00 2001 From: Sebastian Jordan Date: Sun, 8 Dec 2019 15:18:12 +0100 Subject: 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. --- pkgs/development/tools/pypi2nix/default.nix | 8 +++----- 1 file changed, 3 insertions(+), 5 deletions(-) (limited to 'pkgs/development/tools/pypi2nix') 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'"; } -- cgit 1.4.1