Luke Granger-Brown
57725ef3ec
git-subtree-dir: third_party/nixpkgs git-subtree-split: 76612b17c0ce71689921ca12d9ffdc9c23ce40b2
20 lines
517 B
Nix
20 lines
517 B
Nix
{ lib, python3Packages, fetchPypi }:
|
|
|
|
python3Packages.buildPythonApplication rec {
|
|
pname = "sewer";
|
|
version = "0.8.4";
|
|
|
|
src = fetchPypi {
|
|
inherit pname version;
|
|
sha256 = "sha256-a4VdbZY8pYxrXIaUHJpnLuTB928tJn4UCdnt+m8UBug=";
|
|
};
|
|
|
|
propagatedBuildInputs = with python3Packages; [ pyopenssl requests tldextract ];
|
|
|
|
meta = with lib; {
|
|
homepage = "https://github.com/komuw/sewer";
|
|
description = "ACME client";
|
|
license = licenses.mit;
|
|
maintainers = with maintainers; [ kevincox ];
|
|
};
|
|
}
|