nixpkgs/pkgs/development/python-modules/clize/default.nix

52 lines
734 B
Nix
Raw Normal View History

{ stdenv
, buildPythonPackage
, fetchPypi
, dateutil
, sigtools
, six
, attrs
, od
, docutils
, repeated_test
, pygments
2019-12-22 23:39:00 +00:00
, unittest2
, pytest
}:
buildPythonPackage rec {
pname = "clize";
2019-10-24 06:47:27 +00:00
version = "4.1.1";
src = fetchPypi {
inherit pname version;
2019-10-24 06:47:27 +00:00
sha256 = "f54dedcf6fea90a3e75c30cb65e0ab1e832760121f393b8d68edd711dbaf7187";
};
2019-12-22 23:39:00 +00:00
checkInputs = [
dateutil
pygments
repeated_test
unittest2
2019-12-22 23:39:00 +00:00
pytest
];
2019-12-22 23:39:00 +00:00
propagatedBuildInputs = [
attrs
docutils
od
sigtools
six
];
2019-12-22 23:39:00 +00:00
checkPhase = ''
pytest
'';
meta = with stdenv.lib; {
description = "Command-line argument parsing for Python";
homepage = "https://github.com/epsy/clize";
license = licenses.mit;
};
}