7 buildPythonPackage rec {
8 pname = "commandlines";
10 format = "setuptools";
12 # PyPI source tarballs omit tests, fetch from Github instead
13 src = fetchFromGitHub {
14 owner = "chrissimpkins";
15 repo = "commandlines";
17 hash = "sha256-x3iUeOTAaTKNW5Y5foMPMJcWVxu52uYZoY3Hhe3UvQ4=";
26 description = "Python library for command line argument parsing";
27 homepage = "https://github.com/chrissimpkins/commandlines";
28 license = licenses.mit;
29 maintainers = with maintainers; [ danc86 ];