summary refs log tree commit diff
path: root/pkgs/development/python-modules/plugnplay
diff options
context:
space:
mode:
authorCole Helbling <cole.e.helbling@outlook.com>2021-04-18 09:51:19 -0700
committerCole Helbling <cole.e.helbling@outlook.com>2021-04-21 11:21:10 -0700
commit088f388bd2a6cbca5aad7e443e8cac9a6f0ca018 (patch)
tree73ad6a2f91d96518330aab6c3b6aa774a7d39803 /pkgs/development/python-modules/plugnplay
parent8e013f3fa887fb620659c3ce5564388ee605df19 (diff)
python.pkgs.plugnplay: init at 0.5.4
Diffstat (limited to 'pkgs/development/python-modules/plugnplay')
-rw-r--r--pkgs/development/python-modules/plugnplay/default.nix27
1 files changed, 27 insertions, 0 deletions
diff --git a/pkgs/development/python-modules/plugnplay/default.nix b/pkgs/development/python-modules/plugnplay/default.nix
new file mode 100644
index 0000000000000..259fe96028a94
--- /dev/null
+++ b/pkgs/development/python-modules/plugnplay/default.nix
@@ -0,0 +1,27 @@
+{ lib
+, buildPythonPackage
+, fetchPypi
+}:
+buildPythonPackage rec {
+  pname = "plugnplay";
+  version = "0.5.4";
+
+  src = fetchPypi {
+    inherit pname version;
+    sha256 = "877e2d2500a45aaf31e5175f9f46182088d3e2d64c1c6b9ff6c778ae0ee594c8";
+  };
+
+  # no tests
+  doCheck = false;
+
+  pythonImportsCheck = [
+    "plugnplay"
+  ];
+
+  meta = with lib; {
+    description = "A Generic plug-in system for python applications";
+    homepage = "https://github.com/daltonmatos/plugnplay";
+    license = licenses.gpl2Only;
+    maintainers = teams.determinatesystems.members;
+  };
+}