8 buildPythonPackage rec {
9 pname = "commandlines";
11 format = "setuptools";
13 # PyPI source tarballs omit tests, fetch from Github instead
14 src = fetchFromGitHub {
15 owner = "chrissimpkins";
16 repo = "commandlines";
18 hash = "sha256-x3iUeOTAaTKNW5Y5foMPMJcWVxu52uYZoY3Hhe3UvQ4=";
21 nativeCheckInputs = [ pytestCheckHook ];
24 description = "Python library for command line argument parsing";
25 homepage = "https://github.com/chrissimpkins/commandlines";
26 license = licenses.mit;
27 maintainers = with maintainers; [ danc86 ];