nixpkgs/pkgs/development/python-modules/clize/default.nix
worldofpeace 85a603c738 pythonPackages.clize: fix build
We just needed to add some deps.
2018-12-30 10:25:05 -05:00

46 lines
682 B
Nix

{ stdenv
, buildPythonPackage
, fetchPypi
, dateutil
, sigtools
, six
, attrs
, od
, docutils
, repeated_test
, unittest2
, pygments
}:
buildPythonPackage rec {
pname = "clize";
version = "4.0.3";
src = fetchPypi {
inherit pname version;
sha256 = "dbcfba5571dc30aaf90dc98fc279e2aab69d0f8f3665fc0394fbc10a87a2be60";
};
checkInputs = [
dateutil
pygments
repeated_test
unittest2
];
propagatedBuildInputs = [
attrs
docutils
od
sigtools
six
];
meta = with stdenv.lib; {
description = "Command-line argument parsing for Python";
homepage = "https://github.com/epsy/clize";
license = licenses.mit;
};
}