mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-17 19:21:04 +00:00
simp_le: use PEP517 builder
add preCheck and postCheck phase add new runtime dependencies mock, pyopenssl pytz, six and cryptography Co-authored-by: Martin Weinelt <mweinelt@users.noreply.github.com>
This commit is contained in:
parent
128f6c7775
commit
dcbf69fd20
|
@ -1,12 +1,18 @@
|
|||
{ lib, python3Packages, fetchPypi, bash }:
|
||||
{
|
||||
lib,
|
||||
python3Packages,
|
||||
fetchPypi,
|
||||
bash,
|
||||
}:
|
||||
|
||||
python3Packages.buildPythonApplication rec {
|
||||
pname = "simp_le-client";
|
||||
version = "0.20.0";
|
||||
pyproject = true;
|
||||
|
||||
src = fetchPypi {
|
||||
inherit pname version;
|
||||
sha256 = "sha256-p6+OF8MuAzcdTV4/CvZpjGaOrg7xcNuEddk7yC2sXIE=";
|
||||
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;
|
||||
};
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue