python37Packages.django_guardian: 1.5.0 -> 1.5.1 (#61364)

* 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
This commit is contained in:
R. RyanTM 2019-05-12 10:38:04 -07:00 committed by Renaud
parent fd4a976dc3
commit 7c9de797bc
1 changed files with 3 additions and 4 deletions

View File

@ -1,14 +1,14 @@
{ stdenv, buildPythonPackage, fetchPypi, isPy3k { stdenv, buildPythonPackage, fetchPypi
, django_environ, mock, django, six , django_environ, mock, django, six
, pytest, pytestrunner, pytest-django , pytest, pytestrunner, pytest-django
}: }:
buildPythonPackage rec { buildPythonPackage rec {
pname = "django-guardian"; pname = "django-guardian";
version = "1.5.0"; version = "1.5.1";
src = fetchPypi { src = fetchPypi {
inherit pname version; inherit pname version;
sha256 = "9e144bbdfa67f523dc6f70768653a19c0aac29394f947a80dcb8eb7900840637"; sha256 = "0fixr2g5amdgqzh0rvfvd7hbxyfd5ra3y3s0fsmp8i1b68p97930";
}; };
checkInputs = [ pytest pytestrunner pytest-django django_environ mock ]; checkInputs = [ pytest pytestrunner pytest-django django_environ mock ];
@ -18,6 +18,5 @@ buildPythonPackage rec {
description = "Per object permissions for Django"; description = "Per object permissions for Django";
homepage = https://github.com/django-guardian/django-guardian; homepage = https://github.com/django-guardian/django-guardian;
license = [ licenses.mit licenses.bsd2 ]; license = [ licenses.mit licenses.bsd2 ];
broken = !isPy3k; # https://github.com/django-guardian/django-guardian/pull/605
}; };
} }