nixpkgs/pkgs/development/python-modules/django_redis/default.nix

28 lines
584 B
Nix
Raw Normal View History

{ stdenv, fetchPypi, buildPythonPackage,
mock, django, redis, msgpack }:
buildPythonPackage rec {
pname = "django-redis";
2019-12-19 19:31:09 +00:00
version = "4.11.0";
src = fetchPypi {
inherit pname version;
2019-12-19 19:31:09 +00:00
sha256 = "a5b1e3ffd3198735e6c529d9bdf38ca3fcb3155515249b98dc4d966b8ddf9d2b";
};
doCheck = false;
buildInputs = [ mock ];
propagatedBuildInputs = [
django
redis
msgpack
];
meta = with stdenv.lib; {
description = "Full featured redis cache backend for Django";
homepage = "https://github.com/niwibe/django-redis";
license = licenses.bsd3;
};
}