Skip to content
Permalink

Comparing changes

Choose two branches to see what’s changed or to start a new pull request. If you need to, you can also or learn more about diff comparisons.

Open a pull request

Create a new pull request by comparing changes across two branches. If you need to, you can also . Learn more about diff comparisons here.
base repository: NixOS/nixpkgs
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: 9fd50e69550a
Choose a base ref
...
head repository: NixOS/nixpkgs
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: dd60ccaca722
Choose a head ref
  • 3 commits
  • 1 file changed
  • 2 contributors

Commits on Mar 6, 2019

  1. 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.
    knedlsepp committed Mar 6, 2019
    Copy the full SHA
    19fc5cb View commit details
  2. sewer: 0.6.0 -> 0.7.0

    knedlsepp committed Mar 6, 2019
    Copy the full SHA
    841beaf View commit details

Commits on Mar 7, 2019

  1. Merge pull request #56981 from knedlsepp/fix-sewer

    sewer: Fix build
    markuskowa authored Mar 7, 2019
    Copy the full SHA
    dd60cca View commit details
Showing with 2 additions and 7 deletions.
  1. +2 −7 pkgs/tools/admin/sewer/default.nix
9 changes: 2 additions & 7 deletions pkgs/tools/admin/sewer/default.nix
Original file line number Diff line number Diff line change
@@ -2,20 +2,15 @@

python3Packages.buildPythonApplication rec {
pname = "sewer";
version = "0.6.0";
version = "0.7.0";

src = python3Packages.fetchPypi {
inherit pname version;
sha256 = "180slmc2zk4mvjqp25ks0j8kd63ai4y77ds5icm7qd7av865rryp";
sha256 = "16j4npqj3fdj3g2z7nqb0cvvxd85xk20g9c43f3q8a1k5psf1fmq";
};

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";