nixpkgs/pkgs/development/python-modules/django-q/default.nix
Peter Simons 131910992b python-HyperKitty: initial version 1.2.2
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
2019-08-30 14:25:13 +02:00

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