mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-21 05:00:16 +00:00
sewer: init at 0.6.0
sewer is an ACME client which supports DNS challenges with support for various DNS servers.
This commit is contained in:
parent
2936d1051e
commit
011f1c7396
26
pkgs/tools/admin/sewer/default.nix
Normal file
26
pkgs/tools/admin/sewer/default.nix
Normal file
|
@ -0,0 +1,26 @@
|
|||
{ stdenv, python3Packages }:
|
||||
|
||||
python3Packages.buildPythonApplication rec {
|
||||
pname = "sewer";
|
||||
version = "0.6.0";
|
||||
|
||||
src = python3Packages.fetchPypi {
|
||||
inherit pname version;
|
||||
sha256 = "180slmc2zk4mvjqp25ks0j8kd63ai4y77ds5icm7qd7av865rryp";
|
||||
};
|
||||
|
||||
propagatedBuildInputs = with python3Packages; [ pyopenssl requests tldextract ];
|
||||
|
||||
postPatch = ''
|
||||
# The README has non-ascii characters which makes setup.py crash.
|
||||
sed -i 's/[\d128-\d255]//g' README.md
|
||||
'';
|
||||
|
||||
meta = with stdenv.lib; {
|
||||
homepage = https://github.com/komuw/sewer;
|
||||
description = "ACME client";
|
||||
license = licenses.mit;
|
||||
maintainers = with maintainers; [ kevincox ];
|
||||
platforms = platforms.linux;
|
||||
};
|
||||
}
|
|
@ -5214,6 +5214,8 @@ with pkgs;
|
|||
|
||||
seqdiag = with python3Packages; toPythonApplication seqdiag;
|
||||
|
||||
sewer = callPackage ../tools/admin/sewer { };
|
||||
|
||||
screenfetch = callPackage ../tools/misc/screenfetch { };
|
||||
|
||||
sg3_utils = callPackage ../tools/system/sg3_utils { };
|
||||
|
|
Loading…
Reference in a new issue