about summary refs log tree commit diff
path: root/pkgs/development/python-modules/django-q
diff options
context:
space:
mode:
authorPeter Simons <simons@cryp.to>2019-08-30 14:23:02 +0200
committerPeter Simons <simons@cryp.to>2019-08-30 14:25:13 +0200
commit131910992beecf518df8d2420750978d343d2e9c (patch)
tree40b1929dff24bb717433895f3a6a6db6e9290bde /pkgs/development/python-modules/django-q
parent9c46c35bbb78f2a2d7766908fa0904e071547353 (diff)
python-HyperKitty: initial version 1.2.2
Package the mail archiver for GNU Mailman. I liberally borrowed code
from @globin's repository [1].

[1] https://github.com/mayflower/nixexprs/tree/master/pkgs/python
Diffstat (limited to 'pkgs/development/python-modules/django-q')
-rw-r--r--pkgs/development/python-modules/django-q/default.nix24
1 files changed, 24 insertions, 0 deletions
diff --git a/pkgs/development/python-modules/django-q/default.nix b/pkgs/development/python-modules/django-q/default.nix
new file mode 100644
index 0000000000000..f671674ffe2e8
--- /dev/null
+++ b/pkgs/development/python-modules/django-q/default.nix
@@ -0,0 +1,24 @@
+{ stdenv, buildPythonPackage, fetchPypi, django-picklefield, arrow
+, blessed, django, future }:
+
+buildPythonPackage rec {
+  pname = "django-q";
+  version = "1.0.1";
+
+  src = fetchPypi {
+    inherit pname version;
+    sha256 = "17mqxiacsp2yszak6j48fm7vx0w44pcg86flc63r9y5yhx490n5r";
+  };
+
+  propagatedBuildInputs = [
+    django-picklefield arrow blessed django future
+  ];
+
+  doCheck = false;
+
+  meta = with stdenv.lib; {
+    description = "A multiprocessing distributed task queue for Django";
+    homepage = https://django-q.readthedocs.org;
+    license = licenses.mit;
+  };
+}