ced21f5e1a
The `buildPython*` function computes name from `pname` and `version`. This change removes `name` attribute from all expressions in `pkgs/development/python-modules`. While at it, some other minor changes were made as well, such as replacing `fetchurl` calls with `fetchPypi`.
28 lines
581 B
Nix
28 lines
581 B
Nix
{ stdenv, fetchPypi, buildPythonPackage,
|
|
mock, django, redis, msgpack }:
|
|
buildPythonPackage rec {
|
|
pname = "django-redis";
|
|
version = "4.9.0";
|
|
|
|
src = fetchPypi {
|
|
inherit pname version;
|
|
sha256 = "15b47faef6aefaa3f47135a2aeb67372da300e4a4cf06809c66ab392686a2155";
|
|
};
|
|
|
|
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;
|
|
};
|
|
}
|