about summary refs log tree commit diff
path: root/pkgs/development/python-modules/python-simple-hipchat
diff options
context:
space:
mode:
authorJörg Thalheim <joerg@thalheim.io>2017-09-10 14:31:30 +0100
committerJörg Thalheim <joerg@thalheim.io>2017-09-10 14:31:30 +0100
commitcfb64bdbbd8217180ecfeb7ed8ad7600643fd103 (patch)
treeb2317c9e4a43981172229e091c1af3ce3afe7e15 /pkgs/development/python-modules/python-simple-hipchat
parent70fe7ed01e62b114e981ee3deed79e602b6c0349 (diff)
python.pkgs.python_simple_hipchat: move out of python-packages
Diffstat (limited to 'pkgs/development/python-modules/python-simple-hipchat')
-rw-r--r--pkgs/development/python-modules/python-simple-hipchat/default.nix21
1 files changed, 21 insertions, 0 deletions
diff --git a/pkgs/development/python-modules/python-simple-hipchat/default.nix b/pkgs/development/python-modules/python-simple-hipchat/default.nix
new file mode 100644
index 0000000000000..1e3f627ab0b9f
--- /dev/null
+++ b/pkgs/development/python-modules/python-simple-hipchat/default.nix
@@ -0,0 +1,21 @@
+{ stdenv, buildPythonPackage, fetchPypi
+, unzip }:
+
+buildPythonPackage rec {
+  name = "${pname}-${version}";
+  pname = "python-simple-hipchat";
+  version = "0.4.0";
+
+  src = fetchPypi {
+    inherit pname version;
+    sha256 = "0zy6prrj85jjc4xmxgfg8h94j81k6zhfxfffcbvq9b10jis1rgav";
+  };
+
+  buildInputs = [ unzip ];
+
+  meta = with stdenv.lib; {
+    description = "Easy peasy wrapper for HipChat's v1 API";
+    homepage = https://github.com/kurttheviking/simple-hipchat-py;
+    license = licenses.mit;
+  };
+}