summaryrefslogtreecommitdiffstats
path: root/pkgs/development/python-modules/commandlines/default.nix
diff options
context:
space:
mode:
Diffstat (limited to 'pkgs/development/python-modules/commandlines/default.nix')
-rw-r--r--pkgs/development/python-modules/commandlines/default.nix31
1 files changed, 31 insertions, 0 deletions
diff --git a/pkgs/development/python-modules/commandlines/default.nix b/pkgs/development/python-modules/commandlines/default.nix
new file mode 100644
index 000000000000..70e37055c4dd
--- /dev/null
+++ b/pkgs/development/python-modules/commandlines/default.nix
@@ -0,0 +1,31 @@
+{ lib
+, buildPythonPackage
+, fetchFromGitHub
+, pytestCheckHook
+}:
+
+buildPythonPackage rec {
+ pname = "commandlines";
+ version = "0.4.1";
+
+ # PyPI source tarballs omit tests, fetch from Github instead
+ src = fetchFromGitHub {
+ owner = "chrissimpkins";
+ repo = "commandlines";
+ rev = "v${version}";
+ hash = "sha256-x3iUeOTAaTKNW5Y5foMPMJcWVxu52uYZoY3Hhe3UvQ4=";
+ };
+
+ doCheck = true;
+ nativeCheckInputs = [
+ pytestCheckHook
+ ];
+
+ meta = with lib; {
+ description = "Python library for command line argument parsing";
+ homepage = "https://github.com/chrissimpkins/commandlines";
+ license = licenses.mit;
+ maintainers = with maintainers; [ danc86 ];
+ };
+}
+