1{ stdenv, buildPythonPackage, fetchPypi, django-picklefield, arrow
2, blessed, django, future }:
3
4buildPythonPackage rec {
5 pname = "django-q";
6 version = "1.0.1";
7
8 src = fetchPypi {
9 inherit pname version;
10 sha256 = "17mqxiacsp2yszak6j48fm7vx0w44pcg86flc63r9y5yhx490n5r";
11 };
12
13 propagatedBuildInputs = [
14 django-picklefield arrow blessed django future
15 ];
16
17 doCheck = false;
18
19 meta = with stdenv.lib; {
20 description = "A multiprocessing distributed task queue for Django";
21 homepage = https://django-q.readthedocs.org;
22 license = licenses.mit;
23 };
24}