about summary refs log tree commit diff
diff options
context:
space:
mode:
authorMario Rodas <marsam@users.noreply.github.com>2019-07-13 04:21:00 -0500
committerFrederik Rietdijk <freddyrietdijk@fridh.nl>2019-08-13 09:18:25 +0200
commitf8aa6f123573efefd10a131bc156c90f46e7a3da (patch)
tree63022d71a167902a168bdca77761efae31a02f0b
parent2b78d54c821494b79c574726658bcdb0ee14b5fe (diff)
downloadnixlib-f8aa6f123573efefd10a131bc156c90f46e7a3da.tar
nixlib-f8aa6f123573efefd10a131bc156c90f46e7a3da.tar.gz
nixlib-f8aa6f123573efefd10a131bc156c90f46e7a3da.tar.bz2
nixlib-f8aa6f123573efefd10a131bc156c90f46e7a3da.tar.lz
nixlib-f8aa6f123573efefd10a131bc156c90f46e7a3da.tar.xz
nixlib-f8aa6f123573efefd10a131bc156c90f46e7a3da.tar.zst
nixlib-f8aa6f123573efefd10a131bc156c90f46e7a3da.zip
pythonPackages.zetup: 0.2.48 -> 0.2.52
-rw-r--r--pkgs/development/python-modules/zetup/default.nix10
1 files changed, 5 insertions, 5 deletions
diff --git a/pkgs/development/python-modules/zetup/default.nix b/pkgs/development/python-modules/zetup/default.nix
index ee9270f3596d..dcebf7d4ecf9 100644
--- a/pkgs/development/python-modules/zetup/default.nix
+++ b/pkgs/development/python-modules/zetup/default.nix
@@ -1,14 +1,14 @@
 { stdenv, buildPythonPackage, fetchPypi
 , setuptools_scm, pathpy, nbconvert
-, pytest_3 }:
+, pytest }:
 
 buildPythonPackage rec {
   pname = "zetup";
-  version = "0.2.48";
+  version = "0.2.52";
 
   src = fetchPypi {
     inherit pname version;
-    sha256 = "41af61e8e103656ee633f89ff67d6a94848b9b9a836d351bb813b87a139a7c46";
+    sha256 = "9ce97276acf0425499251c5eb700f6a3820adc52859df1e03c6d0f0b88a452cd";
   };
 
   # Python 3.7 compatibility
@@ -19,10 +19,10 @@ buildPythonPackage rec {
   '';
 
   checkPhase = ''
-    py.test test -k "not TestObject"
+    py.test test -k "not TestObject" --deselect=test/test_zetup_config.py::test_classifiers
   '';
 
-  checkInputs = [ pytest_3 pathpy nbconvert ];
+  checkInputs = [ pytest pathpy nbconvert ];
   propagatedBuildInputs = [ setuptools_scm ];
 
   meta = with stdenv.lib; {