about summary refs log tree commit diff
path: root/pkgs/development/python-modules/nocaselist
diff options
context:
space:
mode:
authorfreezeboy <freezeboy@users.noreply.github.com>2020-10-31 22:46:56 +0100
committerJonathan Ringer <jonringer@users.noreply.github.com>2020-11-23 06:33:53 -0800
commiteaf730c4f86eea68d0ef17d7912df078adef78e5 (patch)
treea5f07c276b083a52a3dbcbb581d08cb8d50bce9c /pkgs/development/python-modules/nocaselist
parent4f322b7ef56ed760bd49833fdf09dabc596b4880 (diff)
python3Packages.nocaselist: init at 1.0.3
Diffstat (limited to 'pkgs/development/python-modules/nocaselist')
-rw-r--r--pkgs/development/python-modules/nocaselist/default.nix28
1 files changed, 28 insertions, 0 deletions
diff --git a/pkgs/development/python-modules/nocaselist/default.nix b/pkgs/development/python-modules/nocaselist/default.nix
new file mode 100644
index 0000000000000..055b55da45d3d
--- /dev/null
+++ b/pkgs/development/python-modules/nocaselist/default.nix
@@ -0,0 +1,28 @@
+{ lib, buildPythonPackage, fetchPypi
+, pytest
+}:
+
+buildPythonPackage rec {
+  pname = "nocaselist";
+  version = "1.0.3";
+
+  src = fetchPypi {
+    inherit pname version;
+    sha256 = "fm3st9hVY7kESRPJCH70tpG8PaTXrR2IlozepAlVMyY=";
+  };
+
+  checkInputs = [
+    pytest
+  ];
+
+  pythonImportsCheck = [
+    "nocaselist"
+  ];
+
+  meta = with lib; {
+    description = "A case-insensitive list for Python";
+    homepage = "https://github.com/pywbem/nocaselist";
+    license = licenses.lgpl21Plus;
+    maintainers = with maintainers; [ freezeboy ];
+  };
+}