mirror of
https://github.com/NixOS/nixpkgs.git
synced 2026-09-24 00:49:14 +00:00
This was caused by a python's patch-level bump.
It broke the build
(cherry picked from commit add68064f0)
https://hydra.nixos.org/build/322840575/nixlog/1/tail
115 lines
2.4 KiB
Nix
115 lines
2.4 KiB
Nix
{
|
|
lib,
|
|
stdenv,
|
|
buildPythonPackage,
|
|
python,
|
|
runCommand,
|
|
fetchFromGitHub,
|
|
fetchpatch,
|
|
configargparse,
|
|
acme,
|
|
configobj,
|
|
cryptography,
|
|
distro,
|
|
josepy,
|
|
parsedatetime,
|
|
pyrfc3339,
|
|
setuptools,
|
|
dialog,
|
|
gnureadline,
|
|
pytest-xdist,
|
|
pytestCheckHook,
|
|
python-dateutil,
|
|
writeShellScriptBin,
|
|
}:
|
|
|
|
buildPythonPackage rec {
|
|
pname = "certbot";
|
|
version = "5.1.0";
|
|
pyproject = true;
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "certbot";
|
|
repo = "certbot";
|
|
tag = "v${version}";
|
|
hash = "sha256-jKhdclLBeWv6IxIZQtD8VWbSQ3SDZePA/kTxjiBXJ4o=";
|
|
};
|
|
|
|
patches = [
|
|
(fetchpatch {
|
|
name = "fix-test_rollback_too_many.patch";
|
|
url = "https://github.com/certbot/certbot/commit/4c61a450d4a843c66baab6d5d9a42ce0554e99d7.patch";
|
|
hash = "sha256-PSh2JXoEWNUrqxNh8X5QchyIP8KRHT60T/cLax6VRWo=";
|
|
})
|
|
];
|
|
|
|
postPatch = "cd certbot"; # using sourceRoot would interfere with patches
|
|
|
|
build-system = [ setuptools ];
|
|
|
|
dependencies = [
|
|
configargparse
|
|
acme
|
|
configobj
|
|
cryptography
|
|
distro
|
|
josepy
|
|
parsedatetime
|
|
pyrfc3339
|
|
];
|
|
|
|
buildInputs = [
|
|
dialog
|
|
gnureadline
|
|
];
|
|
|
|
nativeCheckInputs = [
|
|
python-dateutil
|
|
pytestCheckHook
|
|
pytest-xdist
|
|
]
|
|
++ lib.optionals stdenv.hostPlatform.isDarwin [
|
|
(writeShellScriptBin "sw_vers" ''
|
|
echo 'ProductVersion: 13.0'
|
|
'')
|
|
];
|
|
|
|
pytestFlags = [
|
|
"-pno:cacheprovider"
|
|
"-Wignore::DeprecationWarning"
|
|
];
|
|
|
|
disabledTests = [
|
|
# network access
|
|
"test_lock_order"
|
|
];
|
|
|
|
__darwinAllowLocalNetworking = true;
|
|
|
|
makeWrapperArgs = [ "--prefix PATH : ${dialog}/bin" ];
|
|
|
|
# certbot.withPlugins has a similar calling convention as python*.withPackages
|
|
# it gets invoked with a lambda, and invokes that lambda with the python package set matching certbot's:
|
|
# certbot.withPlugins (cp: [ cp.certbot-dns-foo ])
|
|
passthru.withPlugins =
|
|
f:
|
|
let
|
|
pythonEnv = python.withPackages f;
|
|
in
|
|
runCommand "certbot-with-plugins" { } ''
|
|
mkdir -p $out/bin
|
|
cd $out/bin
|
|
ln -s ${pythonEnv}/bin/certbot
|
|
'';
|
|
|
|
meta = {
|
|
homepage = "https://github.com/certbot/certbot";
|
|
changelog = "https://github.com/certbot/certbot/blob/${src.tag}/certbot/CHANGELOG.md";
|
|
description = "ACME client that can obtain certs and extensibly update server configurations";
|
|
platforms = lib.platforms.unix;
|
|
mainProgram = "certbot";
|
|
maintainers = [ ];
|
|
license = with lib.licenses; [ asl20 ];
|
|
};
|
|
}
|