summary refs log tree commit diff
path: root/pkgs/development/python-modules/helper
diff options
context:
space:
mode:
authornagato.pain <iuns@outlook.fr>2018-10-13 10:12:58 -0700
committernagato.pain <iuns@outlook.fr>2018-10-13 10:12:58 -0700
commit994b84d816b76425964cabdbee334b52aa151d52 (patch)
tree1746669f281d2a48f64cef7f338ef2736736ea91 /pkgs/development/python-modules/helper
parent0f5f873e933052b6b198e4786276b16063ab729e (diff)
downloadnixpkgs-994b84d816b76425964cabdbee334b52aa151d52.tar
nixpkgs-994b84d816b76425964cabdbee334b52aa151d52.tar.gz
nixpkgs-994b84d816b76425964cabdbee334b52aa151d52.tar.bz2
nixpkgs-994b84d816b76425964cabdbee334b52aa151d52.tar.lz
nixpkgs-994b84d816b76425964cabdbee334b52aa151d52.tar.xz
nixpkgs-994b84d816b76425964cabdbee334b52aa151d52.tar.zst
nixpkgs-994b84d816b76425964cabdbee334b52aa151d52.zip
pythonPackages.helper: 2.4.1 -> 2.4.2 | cleanup
Diffstat (limited to 'pkgs/development/python-modules/helper')
-rw-r--r--pkgs/development/python-modules/helper/default.nix24
1 files changed, 24 insertions, 0 deletions
diff --git a/pkgs/development/python-modules/helper/default.nix b/pkgs/development/python-modules/helper/default.nix
new file mode 100644
index 00000000000..15dadd0bf11
--- /dev/null
+++ b/pkgs/development/python-modules/helper/default.nix
@@ -0,0 +1,24 @@
+{ stdenv, buildPythonPackage, fetchPypi, pyyaml, mock }:
+ 
+buildPythonPackage rec {
+  pname = "helper";
+  version = "2.4.2";
+  name = "${pname}-${version}";
+  
+  src = fetchPypi {
+    inherit pname version;
+    sha256 = "0p56dvjpaz9wnr0ik2wmvgqjf9ji180bhjky7q272l5dan94lgd6";
+  };
+  
+  buildInputs = [ mock ];
+  propagatedBuildInputs = [ pyyaml ];
+  
+  # No tests in the pypi tarball
+  doCheck = false;
+  
+  meta = with stdenv.lib; {
+    description = "Development library for quickly writing configurable applications and daemons";
+    homepage = https://helper.readthedocs.org/;
+    license = licenses.bsd3;
+  };
+}