lol
0
fork

Configure Feed

Select the types of activity you want to include in your feed.

Merge pull request #194096 from r-ryantm/auto-update/python310Packages.django-reversion

python310Packages.django-reversion: 5.0.2 -> 5.0.3

authored by

Fabian Affolter and committed by
GitHub
877f9001 f9af6656

+15 -7
+15 -7
pkgs/development/python-modules/django-reversion/default.nix
··· 2 2 , buildPythonPackage 3 3 , fetchPypi 4 4 , django 5 + , pythonOlder 5 6 }: 6 7 7 8 buildPythonPackage rec { 8 9 pname = "django-reversion"; 9 - version = "5.0.2"; 10 + version = "5.0.3"; 11 + format = "setuptools"; 12 + 13 + disabled = pythonOlder "3.7"; 10 14 11 - src = fetchPypi { 15 + src = fetchPypi { 12 16 inherit pname version; 13 - sha256 = "sha256-JDoS7k4EwWEcDwdvv8MHTxrUCvxFrcZN5bokFMxOryk="; 17 + hash = "sha256-rLYA+EghRzEqJ71Y5jdmqgODMQGB5IXm6qL0LSZQLJs="; 14 18 }; 15 19 16 - # tests assume the availability of a mysql/postgresql database 20 + propagatedBuildInputs = [ 21 + django 22 + ]; 23 + 24 + # Tests assume the availability of a mysql/postgresql database 17 25 doCheck = false; 18 26 19 - propagatedBuildInputs = [ django ]; 20 - 21 - pythonImportsCheck = [ "reversion" ]; 27 + pythonImportsCheck = [ 28 + "reversion" 29 + ]; 22 30 23 31 meta = with lib; { 24 32 description = "An extension to the Django web framework that provides comprehensive version control facilities";