21 lines
533 B
Nix
21 lines
533 B
Nix
|
{ stdenv, python3Packages }:
|
||
|
|
||
|
python3Packages.buildPythonApplication rec {
|
||
|
pname = "sewer";
|
||
|
version = "0.8.1";
|
||
|
|
||
|
src = python3Packages.fetchPypi {
|
||
|
inherit pname version;
|
||
|
sha256 = "0s8f0w6nv8dcs5yw7rn49981b3c9mnnx4f6wzqw4zha0rpp60z22";
|
||
|
};
|
||
|
|
||
|
propagatedBuildInputs = with python3Packages; [ pyopenssl requests tldextract ];
|
||
|
|
||
|
meta = with stdenv.lib; {
|
||
|
homepage = "https://github.com/komuw/sewer";
|
||
|
description = "ACME client";
|
||
|
license = licenses.mit;
|
||
|
maintainers = with maintainers; [ kevincox ];
|
||
|
};
|
||
|
}
|