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.
This commit is contained in:
Josef Kemetmüller 2019-03-06 21:11:15 +01:00
parent b1f767ef90
commit 19fc5cb3db

View file

@ -11,11 +11,6 @@ python3Packages.buildPythonApplication rec {
propagatedBuildInputs = with python3Packages; [ pyopenssl requests tldextract ];
postPatch = ''
# The README has non-ascii characters which makes setup.py crash.
sed -i 's/[\d128-\d255]//g' README.md
'';
meta = with stdenv.lib; {
homepage = https://github.com/komuw/sewer;
description = "ACME client";