1{ lib
2, buildPythonPackage
3, fetchPypi
4, python-dateutil
5, sigtools
6, six
7, attrs
8, od
9, docutils
10, repeated_test
11, pygments
12, unittest2
13, pytestCheckHook
14}:
15
16buildPythonPackage rec {
17 pname = "clize";
18 version = "4.2.1";
19
20 src = fetchPypi {
21 inherit pname version;
22 sha256 = "3177a028e4169d8865c79af82bdd441b24311d4bd9c0ae8803641882d340a51d";
23 };
24
25 checkInputs = [
26 pytestCheckHook
27 python-dateutil
28 pygments
29 repeated_test
30 unittest2
31 ];
32
33 propagatedBuildInputs = [
34 attrs
35 docutils
36 od
37 sigtools
38 six
39 ];
40
41 pythonImportsCheck = [ "clize" ];
42
43 meta = with lib; {
44 description = "Command-line argument parsing for Python";
45 homepage = "https://github.com/epsy/clize";
46 license = licenses.mit;
47 maintainers = with maintainers; [ ];
48 };
49}