mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-12-19 20:23:02 +00:00
25 lines
578 B
Nix
25 lines
578 B
Nix
|
{ 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;
|
||
|
};
|
||
|
}
|