Merge pull request #266533 from makefu/zhfs/update-simp_le

simp_le: 0.17.0 -> 0.20.0
This commit is contained in:
Weijia Wang 2024-06-10 20:00:53 +02:00 committed by GitHub
commit 98cc4fc312
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -1,12 +1,18 @@
{ lib, python3Packages, fetchPypi, bash }:
{
lib,
python3Packages,
fetchPypi,
bash,
}:
python3Packages.buildPythonApplication rec {
pname = "simp_le-client";
version = "0.17.0";
version = "0.20.0";
pyproject = true;
src = fetchPypi {
inherit pname version;
sha256 = "0m1jynar4calaffp2zdxr5yy9vnhw2qf2hsfxwzfwf8fqb5h7bjb";
hash = "sha256-p6+OF8MuAzcdTV4/CvZpjGaOrg7xcNuEddk7yC2sXIE=";
};
postPatch = ''
@ -16,19 +22,33 @@ python3Packages.buildPythonApplication rec {
--replace "/bin/sh" "${bash}/bin/sh"
'';
# both setuptools-scm and mock are runtime dependencies
dependencies = with python3Packages; [
acme
cryptography
setuptools-scm
josepy
idna
mock
pyopenssl
pytz
six
];
checkPhase = ''
runHook preCheck
$out/bin/simp_le --test
runHook postCheck
'';
propagatedBuildInputs = with python3Packages; [ acme setuptools-scm josepy idna ];
nativeCheckInputs = with python3Packages; [ mock ];
meta = with lib; {
homepage = "https://github.com/zenhack/simp_le";
description = "Simple Let's Encrypt client";
license = licenses.gpl3;
maintainers = with maintainers; [ gebner makefu ];
maintainers = with maintainers; [
gebner
makefu
];
platforms = platforms.linux;
};
}