Merge pull request #119680 from alyssais/hyperkitty

authored by Sandro and committed by GitHub c6cd7e32 86da4934

+18 -7
+16 -5
pkgs/development/python-modules/flufl/lock.nix
··· 1 - { buildPythonPackage, fetchPypi, atpublic }: 2 3 buildPythonPackage rec { 4 pname = "flufl.lock"; 5 - version = "3.2"; 6 - 7 - propagatedBuildInputs = [ atpublic ]; 8 9 src = fetchPypi { 10 inherit pname version; 11 - sha256 = "0nzzd6l30ff6cwsrlrb94xzfja4wkyrqv3ydc6cz0hdbr766mmm8"; 12 }; 13 }
··· 1 + { lib, buildPythonPackage, fetchPypi, pytestCheckHook 2 + , atpublic, psutil, pytestcov, sybil 3 + }: 4 5 buildPythonPackage rec { 6 pname = "flufl.lock"; 7 + version = "5.0.5"; 8 9 src = fetchPypi { 10 inherit pname version; 11 + sha256 = "1bnapkg99r6mixn3kh314bqcfk8q54y0cvhjpj87j7dhjpsakfpz"; 12 + }; 13 + 14 + propagatedBuildInputs = [ atpublic psutil ]; 15 + checkInputs = [ pytestCheckHook pytestcov sybil ]; 16 + 17 + meta = with lib; { 18 + homepage = "https://flufllock.readthedocs.io/"; 19 + description = "NFS-safe file locking with timeouts for POSIX and Windows"; 20 + maintainers = with maintainers; [ qyliss ]; 21 + license = licenses.asl20; 22 + platforms = platforms.all; 23 }; 24 }
+2 -2
pkgs/servers/mail/mailman/hyperkitty.nix
··· 9 pname = "HyperKitty"; 10 # Note: Mailman core must be on the latest version before upgrading HyperKitty. 11 # See: https://gitlab.com/mailman/postorius/-/issues/516#note_544571309 12 - version = "1.3.3"; 13 disabled = !isPy3k; 14 15 src = fetchPypi { 16 inherit pname version; 17 - sha256 = "0p85r9q6mn5as5b39xp9hkkipnk0156acx540n2ygk3qb3jd4a5n"; 18 }; 19 20 nativeBuildInputs = [ isort ];
··· 9 pname = "HyperKitty"; 10 # Note: Mailman core must be on the latest version before upgrading HyperKitty. 11 # See: https://gitlab.com/mailman/postorius/-/issues/516#note_544571309 12 + version = "1.3.4"; 13 disabled = !isPy3k; 14 15 src = fetchPypi { 16 inherit pname version; 17 + sha256 = "1lbh8n66fp3l5s0xvmvsbfvgs3z4knx0gwf0q117n2nfkslf13zp"; 18 }; 19 20 nativeBuildInputs = [ isort ];