about summary refs log tree commit diff
path: root/nixpkgs/pkgs/development/python-modules/helper/default.nix
diff options
context:
space:
mode:
Diffstat (limited to 'nixpkgs/pkgs/development/python-modules/helper/default.nix')
-rw-r--r--nixpkgs/pkgs/development/python-modules/helper/default.nix23
1 files changed, 23 insertions, 0 deletions
diff --git a/nixpkgs/pkgs/development/python-modules/helper/default.nix b/nixpkgs/pkgs/development/python-modules/helper/default.nix
new file mode 100644
index 000000000000..4c7ff0c3878f
--- /dev/null
+++ b/nixpkgs/pkgs/development/python-modules/helper/default.nix
@@ -0,0 +1,23 @@
+{ lib, stdenv, buildPythonPackage, fetchPypi, pyyaml, mock }:
+
+buildPythonPackage rec {
+  pname = "helper";
+  version = "2.4.2";
+
+  src = fetchPypi {
+    inherit pname version;
+    sha256 = "0p56dvjpaz9wnr0ik2wmvgqjf9ji180bhjky7q272l5dan94lgd6";
+  };
+
+  checkInputs = [ mock ];
+  propagatedBuildInputs = [ pyyaml ];
+
+  # No tests in the pypi tarball
+  doCheck = false;
+
+  meta = with lib; {
+    description = "Development library for quickly writing configurable applications and daemons";
+    homepage = "https://helper.readthedocs.org/";
+    license = licenses.bsd3;
+  };
+}