2023-05-25 12:54:35 +01:00
|
|
|
{ lib, python3Packages, fetchPypi }:
|
2018-10-06 11:33:47 +01:00
|
|
|
|
|
|
|
python3Packages.buildPythonApplication rec {
|
|
|
|
pname = "sewer";
|
2024-08-22 05:51:51 +01:00
|
|
|
version = "0.8.4";
|
2018-10-06 11:33:47 +01:00
|
|
|
|
2023-05-25 12:54:35 +01:00
|
|
|
src = fetchPypi {
|
2018-10-06 11:33:47 +01:00
|
|
|
inherit pname version;
|
2024-08-22 05:51:51 +01:00
|
|
|
sha256 = "sha256-a4VdbZY8pYxrXIaUHJpnLuTB928tJn4UCdnt+m8UBug=";
|
2018-10-06 11:33:47 +01:00
|
|
|
};
|
|
|
|
|
|
|
|
propagatedBuildInputs = with python3Packages; [ pyopenssl requests tldextract ];
|
|
|
|
|
2021-01-11 07:54:33 +00:00
|
|
|
meta = with lib; {
|
2020-03-31 04:18:25 +01:00
|
|
|
homepage = "https://github.com/komuw/sewer";
|
2018-10-06 11:33:47 +01:00
|
|
|
description = "ACME client";
|
|
|
|
license = licenses.mit;
|
|
|
|
maintainers = with maintainers; [ kevincox ];
|
|
|
|
};
|
|
|
|
}
|