mirror of
https://github.com/NixOS/nixpkgs.git
synced 2026-08-31 20:54:56 +00:00
Diff: https://github.com/certbot/certbot/compare/refs/tags/v3.1.0...v4.0.0 Changelog: https://github.com/certbot/certbot/blob/v4.0.0/certbot/CHANGELOG.md
15 lines
188 B
Nix
15 lines
188 B
Nix
{
|
|
fetchFromGitHub,
|
|
python3,
|
|
}:
|
|
|
|
let
|
|
python = python3.override {
|
|
self = python;
|
|
packageOverrides = self: super: {
|
|
};
|
|
};
|
|
in
|
|
with python.pkgs;
|
|
toPythonApplication certbot
|