linux_xanmod: 5.11.14 -> 5.11.15
[NixPkgs.git] / pkgs / development / python-modules / django_guardian / default.nix
blob957944f01d385c131d723987f3347ba3feb86ebf
1 { lib, buildPythonPackage, fetchPypi
2 , django_environ, mock, django
3 , pytest, pytestrunner, pytest-django
4 }:
5 buildPythonPackage rec {
6   pname = "django-guardian";
7   version = "2.3.0";
9   src = fetchPypi {
10     inherit pname version;
11     sha256 = "ed2de26e4defb800919c5749fb1bbe370d72829fbd72895b6cf4f7f1a7607e1b";
12   };
14   checkInputs = [ pytest pytestrunner pytest-django django_environ mock ];
15   propagatedBuildInputs = [ django ];
17   meta = with lib; {
18     description = "Per object permissions for Django";
19     homepage = "https://github.com/django-guardian/django-guardian";
20     license = [ licenses.mit licenses.bsd2 ];
21   };