python3Packages.orjson: Disable failing tests on 32 bit
[NixPkgs.git] / pkgs / tools / admin / sewer / default.nix
bloba6f511fe115aa6560dbccfaaff077b08ba74275f
1 { lib, python3Packages }:
3 python3Packages.buildPythonApplication rec {
4   pname = "sewer";
5   version = "0.8.1";
7   src = python3Packages.fetchPypi {
8     inherit pname version;
9     sha256 = "0s8f0w6nv8dcs5yw7rn49981b3c9mnnx4f6wzqw4zha0rpp60z22";
10   };
12   propagatedBuildInputs = with python3Packages; [ pyopenssl requests tldextract ];
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   };