summary refs log tree commit diff
path: root/pkgs/development/python-modules/hypchat
diff options
context:
space:
mode:
Diffstat (limited to 'pkgs/development/python-modules/hypchat')
-rw-r--r--pkgs/development/python-modules/hypchat/default.nix15
1 files changed, 15 insertions, 0 deletions
diff --git a/pkgs/development/python-modules/hypchat/default.nix b/pkgs/development/python-modules/hypchat/default.nix
new file mode 100644
index 000000000000..6574de1be63f
--- /dev/null
+++ b/pkgs/development/python-modules/hypchat/default.nix
@@ -0,0 +1,15 @@
+{ stdenv, buildPythonPackage, fetchPypi
+, requests, six, dateutil }:
+
+buildPythonPackage rec {
+  pname = "hypchat";
+  version = "0.21";
+  name = "${pname}-${version}";
+
+  src = fetchPypi {
+    inherit pname version;
+    sha256 = "1sd8f3gihagaqd848dqy6xw457fa4f9bla1bfyni7fq3h76sjdzg";
+  };
+
+  propagatedBuildInputs = [ requests six dateutil ];
+}