nixpkgs/pkgs/by-name/se/sewer/package.nix

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

21 lines
517 B
Nix
Raw Normal View History

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