lol
1{ lib, python3Packages, fetchPypi }:
2
3python3Packages.buildPythonApplication rec {
4 pname = "sewer";
5 version = "0.8.1";
6
7 src = fetchPypi {
8 inherit pname version;
9 sha256 = "0s8f0w6nv8dcs5yw7rn49981b3c9mnnx4f6wzqw4zha0rpp60z22";
10 };
11
12 propagatedBuildInputs = with python3Packages; [ pyopenssl requests tldextract ];
13
14 meta = with lib; {
15 homepage = "https://github.com/komuw/sewer";
16 description = "ACME client";
17 license = licenses.mit;
18 maintainers = with maintainers; [ kevincox ];
19 };
20}