Merge pull request #119680 from alyssais/hyperkitty

This commit is contained in:
Sandro 2021-04-19 06:21:12 +02:00 committed by GitHub
commit c6cd7e3227
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 18 additions and 7 deletions

View File

@ -1,13 +1,24 @@
{ buildPythonPackage, fetchPypi, atpublic }: { lib, buildPythonPackage, fetchPypi, pytestCheckHook
, atpublic, psutil, pytestcov, sybil
}:
buildPythonPackage rec { buildPythonPackage rec {
pname = "flufl.lock"; pname = "flufl.lock";
version = "3.2"; version = "5.0.5";
propagatedBuildInputs = [ atpublic ];
src = fetchPypi { src = fetchPypi {
inherit pname version; inherit pname version;
sha256 = "0nzzd6l30ff6cwsrlrb94xzfja4wkyrqv3ydc6cz0hdbr766mmm8"; sha256 = "1bnapkg99r6mixn3kh314bqcfk8q54y0cvhjpj87j7dhjpsakfpz";
};
propagatedBuildInputs = [ atpublic psutil ];
checkInputs = [ pytestCheckHook pytestcov sybil ];
meta = with lib; {
homepage = "https://flufllock.readthedocs.io/";
description = "NFS-safe file locking with timeouts for POSIX and Windows";
maintainers = with maintainers; [ qyliss ];
license = licenses.asl20;
platforms = platforms.all;
}; };
} }

View File

@ -9,12 +9,12 @@ buildPythonPackage rec {
pname = "HyperKitty"; pname = "HyperKitty";
# Note: Mailman core must be on the latest version before upgrading HyperKitty. # Note: Mailman core must be on the latest version before upgrading HyperKitty.
# See: https://gitlab.com/mailman/postorius/-/issues/516#note_544571309 # See: https://gitlab.com/mailman/postorius/-/issues/516#note_544571309
version = "1.3.3"; version = "1.3.4";
disabled = !isPy3k; disabled = !isPy3k;
src = fetchPypi { src = fetchPypi {
inherit pname version; inherit pname version;
sha256 = "0p85r9q6mn5as5b39xp9hkkipnk0156acx540n2ygk3qb3jd4a5n"; sha256 = "1lbh8n66fp3l5s0xvmvsbfvgs3z4knx0gwf0q117n2nfkslf13zp";
}; };
nativeBuildInputs = [ isort ]; nativeBuildInputs = [ isort ];