python.pkgs.zetup: 0.2.42 -> 0.2.34

downgrade because the previous upgrade broke the package. The latest
version requires a setuptools bump which we won't do yet.
This commit is contained in:
Frederik Rietdijk 2017-09-06 16:44:30 +02:00
parent b00be43cdf
commit 79257d28e8

View File

@ -5,18 +5,18 @@
buildPythonPackage rec { buildPythonPackage rec {
name = "${pname}-${version}"; name = "${pname}-${version}";
pname = "zetup"; pname = "zetup";
version = "0.2.42"; version = "0.2.34";
src = fetchPypi { src = fetchPypi {
inherit pname version; inherit pname version;
sha256 = "6c9e25249f3014ed2162398772ccf1a5e8a4e9e66c74e3c7f6683945a6a3d84c"; sha256 = "0k4lm51b5qjy7yxy3n5z8vc5hlvjcsfsvwjgqzkr0pisysar1kpf";
}; };
checkPhase = '' checkPhase = ''
py.test test py.test test
''; '';
buildInputs = [ pytest pathpy nbconvert ]; checkInputs = [ pytest pathpy nbconvert ];
propagatedBuildInputs = [ setuptools_scm ]; propagatedBuildInputs = [ setuptools_scm ];
meta = with stdenv.lib; { meta = with stdenv.lib; {