about summary refs log tree commit diff
path: root/pkgs/development/python-modules/helpdev
diff options
context:
space:
mode:
authorFrederik Rietdijk <fridh@fridh.nl>2020-02-16 09:47:12 +0100
committerFrederik Rietdijk <fridh@fridh.nl>2020-02-16 09:47:12 +0100
commitd70bdb7047fe40c811f8d5cedf654bfc81826ec7 (patch)
tree8ceb9fa0d25f99c67aacbf75016d8b50ee8fe25f /pkgs/development/python-modules/helpdev
parent3ff3e2ce1f4bce7882c02cd1a0ba8a561d9c3716 (diff)
downloadnixlib-d70bdb7047fe40c811f8d5cedf654bfc81826ec7.tar
nixlib-d70bdb7047fe40c811f8d5cedf654bfc81826ec7.tar.gz
nixlib-d70bdb7047fe40c811f8d5cedf654bfc81826ec7.tar.bz2
nixlib-d70bdb7047fe40c811f8d5cedf654bfc81826ec7.tar.lz
nixlib-d70bdb7047fe40c811f8d5cedf654bfc81826ec7.tar.xz
nixlib-d70bdb7047fe40c811f8d5cedf654bfc81826ec7.tar.zst
nixlib-d70bdb7047fe40c811f8d5cedf654bfc81826ec7.zip
pythonPackages.helpdev: init at 0.6.10
Diffstat (limited to 'pkgs/development/python-modules/helpdev')
-rw-r--r--pkgs/development/python-modules/helpdev/default.nix30
1 files changed, 30 insertions, 0 deletions
diff --git a/pkgs/development/python-modules/helpdev/default.nix b/pkgs/development/python-modules/helpdev/default.nix
new file mode 100644
index 000000000000..5977ec3aee23
--- /dev/null
+++ b/pkgs/development/python-modules/helpdev/default.nix
@@ -0,0 +1,30 @@
+{ lib
+, buildPythonPackage
+, fetchPypi
+, importlib-metadata
+, psutil
+}:
+
+buildPythonPackage rec {
+  pname = "helpdev";
+  version = "0.6.10";
+
+  src = fetchPypi {
+    inherit pname version;
+    sha256 = "9e61d24458b7506809670222ca656b139e67d46c530cd227a899780152d7b44e";
+  };
+
+  propagatedBuildInputs = [
+    importlib-metadata
+    psutil
+  ];
+
+  # No tests included in archive
+  doCheck = false;
+
+  meta = {
+    description = "Extracts information about the Python environment easily";
+    license = lib.licenses.mit;
+  };
+
+}
\ No newline at end of file