mirror of
https://github.com/NixOS/nixpkgs.git
synced 2026-07-06 17:13:24 -05:00
python3Packages.certbot-nginx: fix build with certbot 5.6.0
This commit is contained in:
parent
02d0ef1ce0
commit
20c65e5616
1 changed files with 3 additions and 8 deletions
|
|
@ -1,9 +1,7 @@
|
|||
{
|
||||
buildPythonPackage,
|
||||
acme,
|
||||
certbot,
|
||||
pyparsing,
|
||||
pytestCheckHook,
|
||||
setuptools,
|
||||
}:
|
||||
|
||||
|
|
@ -18,16 +16,13 @@ buildPythonPackage rec {
|
|||
build-system = [ setuptools ];
|
||||
|
||||
dependencies = [
|
||||
acme
|
||||
certbot
|
||||
pyparsing
|
||||
];
|
||||
|
||||
nativeCheckInputs = [ pytestCheckHook ];
|
||||
|
||||
pytestFlags = [
|
||||
"-pno:cacheprovider"
|
||||
"-Wignore::DeprecationWarning"
|
||||
pythonImportsCheck = [
|
||||
"certbot_nginx"
|
||||
"certbot.plugins.nginx"
|
||||
];
|
||||
|
||||
meta = certbot.meta // {
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue