nixpkgs/pkgs/tools/admin/sewer/default.nix
Josef Kemetmüller 19fc5cb3db sewer: Fix build
The sed expression actually caused an error on hydra:
```
sed: -e expression #1, char 18: Invalid collation character
```
It seems to build fine without it however.
2019-03-06 21:11:15 +01:00

22 lines
564 B
Nix

{ stdenv, python3Packages }:
python3Packages.buildPythonApplication rec {
pname = "sewer";
version = "0.6.0";
src = python3Packages.fetchPypi {
inherit pname version;
sha256 = "180slmc2zk4mvjqp25ks0j8kd63ai4y77ds5icm7qd7av865rryp";
};
propagatedBuildInputs = with python3Packages; [ pyopenssl requests tldextract ];
meta = with stdenv.lib; {
homepage = https://github.com/komuw/sewer;
description = "ACME client";
license = licenses.mit;
maintainers = with maintainers; [ kevincox ];
platforms = platforms.linux;
};
}