Merge pull request #114218 from fabaff/bump-readme_renderer

python3Packages.readme_renderer: 28.0 -> 29.0

authored by Fabian Affolter and committed by GitHub a6328de7 394bc6c1

+34 -27
+5 -3
pkgs/development/python-modules/django-mailman3/default.nix
··· 4 4 5 5 buildPythonPackage rec { 6 6 pname = "django-mailman3"; 7 - version = "1.3.4"; 7 + version = "1.3.5"; 8 8 9 9 src = fetchPypi { 10 10 inherit pname version; 11 - sha256 = "7e37b68bb47e9ae196ca19018f576e2c8c90189c5bd82d4e549d0c2f2f3f35fb"; 11 + sha256 = "sha256-NoWVs8JiPt6spb7qXxKIdCTDhO3W9wUs9EJEMHUIQxM="; 12 12 }; 13 13 14 14 propagatedBuildInputs = [ ··· 21 21 PYTHONPATH=.:$PYTHONPATH django-admin.py test --settings=django_mailman3.tests.settings_test 22 22 ''; 23 23 24 + pythonImportsCheck = [ "django_mailman3" ]; 25 + 24 26 meta = with lib; { 25 27 description = "Django library for Mailman UIs"; 26 28 homepage = "https://gitlab.com/mailman/django-mailman3"; 27 - license = licenses.gpl3; 29 + license = licenses.gpl3Plus; 28 30 maintainers = with maintainers; [ globin peti ]; 29 31 }; 30 32 }
+23 -18
pkgs/development/python-modules/readme_renderer/default.nix
··· 1 1 { lib 2 + , bleach 2 3 , buildPythonPackage 3 - , fetchPypi 4 - , pytest 5 - , mock 6 4 , cmarkgfm 7 - , bleach 8 5 , docutils 6 + , fetchPypi 9 7 , future 8 + , mock 10 9 , pygments 11 - , six 10 + , pytestCheckHook 11 + , pythonOlder 12 12 }: 13 13 14 14 buildPythonPackage rec { 15 15 pname = "readme_renderer"; 16 - version = "28.0"; 16 + version = "29.0"; 17 + disabled = pythonOlder "3.6"; 17 18 18 19 src = fetchPypi { 19 20 inherit pname version; 20 - sha256 = "6b7e5aa59210a40de72eb79931491eaf46fefca2952b9181268bd7c7c65c260a"; 21 + sha256 = "sha256-kv1awr+Gd/MQ8zA6pLzludX58glKuYwp8TeR17gFo9s="; 21 22 }; 22 23 23 - checkInputs = [ pytest mock ]; 24 + propagatedBuildInputs = [ 25 + bleach 26 + cmarkgfm 27 + docutils 28 + future 29 + pygments 30 + ]; 24 31 25 - propagatedBuildInputs = [ 26 - bleach cmarkgfm docutils future pygments six 32 + checkInputs = [ 33 + mock 34 + pytestCheckHook 27 35 ]; 28 36 29 - checkPhase = '' 30 - # disable one failing test case 31 - # fixtures test is failing for incorrect class name 32 - py.test -k "not test_invalid_link and not fixtures" 33 - ''; 37 + pythonImportsCheck = [ "readme_renderer" ]; 34 38 35 - meta = { 36 - description = "readme_renderer is a library for rendering readme descriptions for Warehouse"; 39 + meta = with lib; { 40 + description = "Python library for rendering readme descriptions"; 37 41 homepage = "https://github.com/pypa/readme_renderer"; 38 - license = lib.licenses.asl20; 42 + license = with licenses; [ asl20 ]; 43 + maintainers = with maintainers; [ fab ]; 39 44 }; 40 45 }
+6 -6
pkgs/servers/mail/mailman/postorius.nix
··· 4 4 5 5 buildPythonPackage rec { 6 6 pname = "postorius"; 7 - version = "1.3.3"; 7 + version = "1.3.4"; 8 8 9 9 src = fetchPypi { 10 10 inherit pname version; 11 - sha256 = "08jn23gblbkfl09qlykbpsmp39mmach3sl69h1j5cd5kkx839rwa"; 11 + sha256 = "sha256-L2ApUGQNvR0UVvodVM+wMzjYLZkegI4fT4yUiU/cibU="; 12 12 }; 13 13 14 14 propagatedBuildInputs = [ django-mailman3 readme_renderer ]; ··· 17 17 # Tries to connect to database. 18 18 doCheck = false; 19 19 20 - meta = { 21 - homepage = "https://www.gnu.org/software/mailman/"; 20 + meta = with lib; { 21 + homepage = "https://docs.mailman3.org/projects/postorius"; 22 22 description = "Web-based user interface for managing GNU Mailman"; 23 - license = lib.licenses.gpl3; 24 - maintainers = with lib.maintainers; [ globin peti ]; 23 + license = licenses.gpl3Plus; 24 + maintainers = with maintainers; [ globin peti ]; 25 25 }; 26 26 }