131910992b
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
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;
|
|
};
|
|
}
|