{ stdenv, buildPythonPackage, fetchPypi, django-picklefield, arrow , blessed, django, future }: buildPythonPackage rec { pname = "django-q"; version = "1.2.3"; src = fetchPypi { inherit pname version; sha256 = "aa17950a75dc1fe4636b24ddba37ad3a7b660ce279b2f70f2a301135364fbe58"; }; 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; }; }