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