pythonPackages.clize: fix build
We just needed to add some deps.
This commit is contained in:
parent
1c924c7aeb
commit
85a603c738
@ -3,6 +3,13 @@
|
|||||||
, fetchPypi
|
, fetchPypi
|
||||||
, dateutil
|
, dateutil
|
||||||
, sigtools
|
, sigtools
|
||||||
|
, six
|
||||||
|
, attrs
|
||||||
|
, od
|
||||||
|
, docutils
|
||||||
|
, repeated_test
|
||||||
|
, unittest2
|
||||||
|
, pygments
|
||||||
}:
|
}:
|
||||||
|
|
||||||
buildPythonPackage rec {
|
buildPythonPackage rec {
|
||||||
@ -14,8 +21,20 @@ buildPythonPackage rec {
|
|||||||
sha256 = "dbcfba5571dc30aaf90dc98fc279e2aab69d0f8f3665fc0394fbc10a87a2be60";
|
sha256 = "dbcfba5571dc30aaf90dc98fc279e2aab69d0f8f3665fc0394fbc10a87a2be60";
|
||||||
};
|
};
|
||||||
|
|
||||||
buildInputs = [ dateutil ];
|
checkInputs = [
|
||||||
propagatedBuildInputs = [ sigtools ];
|
dateutil
|
||||||
|
pygments
|
||||||
|
repeated_test
|
||||||
|
unittest2
|
||||||
|
];
|
||||||
|
|
||||||
|
propagatedBuildInputs = [
|
||||||
|
attrs
|
||||||
|
docutils
|
||||||
|
od
|
||||||
|
sigtools
|
||||||
|
six
|
||||||
|
];
|
||||||
|
|
||||||
meta = with stdenv.lib; {
|
meta = with stdenv.lib; {
|
||||||
description = "Command-line argument parsing for Python";
|
description = "Command-line argument parsing for Python";
|
||||||
|
Loading…
x
Reference in New Issue
Block a user