python.pkgs.zetup: init at 0.2.34

(needed as dependency for moretools)
This commit is contained in:
Jörg Thalheim 2017-08-29 07:31:45 +01:00
parent 96ef0dc776
commit b57deb8242
2 changed files with 32 additions and 0 deletions

View file

@ -0,0 +1,30 @@
{ stdenv, buildPythonPackage, fetchPypi
, setuptools_scm, pathpy, nbconvert
, pytest }:
buildPythonPackage rec {
name = "${pname}-${version}";
pname = "zetup";
version = "0.2.34";
src = fetchPypi {
inherit pname version;
sha256 = "0k4lm51b5qjy7yxy3n5z8vc5hlvjcsfsvwjgqzkr0pisysar1kpf";
};
checkPhase = ''
py.test test
'';
buildInputs = [ pytest pathpy nbconvert ];
propagatedBuildInputs = [ setuptools_scm ];
meta = with stdenv.lib; {
description = ''
Zimmermann's Extensible Tools for Unified Project setups
'';
homepage = https://github.com/zimmermanncode/zetup;
license = licenses.gpl3Plus;
platforms = platforms.linux;
};
}

View file

@ -24556,6 +24556,8 @@ EOF
};
};
zetup = callPackage ../development/python-modules/zetup { };
zope_broken = buildPythonPackage rec {
name = "zope.broken-3.6.0";