Merge pull request #307098 from r-ryantm/auto-update/cilium-cli
[NixPkgs.git] / pkgs / development / python-modules / django-guardian / default.nix
blob968e82b5849db7de19d04925b202e05623bc351d
1 { lib
2 , buildPythonPackage
3 , fetchPypi
4 , django-environ
5 , mock
6 , django
7 , pytestCheckHook
8 , pytest-django
9 }:
11 buildPythonPackage rec {
12   pname = "django-guardian";
13   version = "2.4.0";
14   format = "setuptools";
16   src = fetchPypi {
17     inherit pname version;
18     sha256 = "c58a68ae76922d33e6bdc0e69af1892097838de56e93e78a8361090bcd9f89a0";
19   };
21   propagatedBuildInputs = [ django ];
23   nativeCheckInputs = [
24     django-environ
25     mock
26     pytestCheckHook
27     pytest-django
28   ];
30   pythonImportsCheck = [ "guardian" ];
32   meta = with lib; {
33     description = "Per object permissions for Django";
34     homepage = "https://github.com/django-guardian/django-guardian";
35     license = with licenses; [ mit bsd2 ];
36     maintainers = with maintainers; [ ];
37   };