python.pkgs.zetup: init at 0.2.34
(needed as dependency for moretools)
This commit is contained in:
parent
96ef0dc776
commit
b57deb8242
30
pkgs/development/python-modules/zetup/default.nix
Normal file
30
pkgs/development/python-modules/zetup/default.nix
Normal 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;
|
||||||
|
};
|
||||||
|
}
|
@ -24556,6 +24556,8 @@ EOF
|
|||||||
};
|
};
|
||||||
};
|
};
|
||||||
|
|
||||||
|
zetup = callPackage ../development/python-modules/zetup { };
|
||||||
|
|
||||||
zope_broken = buildPythonPackage rec {
|
zope_broken = buildPythonPackage rec {
|
||||||
name = "zope.broken-3.6.0";
|
name = "zope.broken-3.6.0";
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user