mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-12-02 03:43:06 +00:00
7c9de797bc
* python37Packages.django_guardian: 1.5.0 -> 1.5.1 Semi-automatic update generated by https://github.com/ryantm/nixpkgs-update tools. This update was made based on information from https://repology.org/metapackage/python3.7-django-guardian/versions * pythonPackages.django-guardian: reenable on Py27
23 lines
632 B
Nix
23 lines
632 B
Nix
{ stdenv, buildPythonPackage, fetchPypi
|
|
, django_environ, mock, django, six
|
|
, pytest, pytestrunner, pytest-django
|
|
}:
|
|
buildPythonPackage rec {
|
|
pname = "django-guardian";
|
|
version = "1.5.1";
|
|
|
|
src = fetchPypi {
|
|
inherit pname version;
|
|
sha256 = "0fixr2g5amdgqzh0rvfvd7hbxyfd5ra3y3s0fsmp8i1b68p97930";
|
|
};
|
|
|
|
checkInputs = [ pytest pytestrunner pytest-django django_environ mock ];
|
|
propagatedBuildInputs = [ django ];
|
|
|
|
meta = with stdenv.lib; {
|
|
description = "Per object permissions for Django";
|
|
homepage = https://github.com/django-guardian/django-guardian;
|
|
license = [ licenses.mit licenses.bsd2 ];
|
|
};
|
|
}
|