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: 622e1b083aa9
Choose a base ref
...
head repository: NixOS/nixpkgs
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: a58ddbe232c5
Choose a head ref
  • 4 commits
  • 1 file changed
  • 2 contributors

Commits on Jan 17, 2020

  1. sewer: 0.7.0 -> 0.7.3

    r-ryantm committed Jan 17, 2020
    Copy the full SHA
    d97a34c View commit details

Commits on Jan 19, 2020

  1. sewer: 0.7.3 -> 0.7.9

    marsam committed Jan 19, 2020
    Copy the full SHA
    fc408d5 View commit details
  2. sewer: enable on darwin

    marsam committed Jan 19, 2020
    Copy the full SHA
    30a7902 View commit details
  3. Merge pull request #77902 from r-ryantm/auto-update/sewer

    sewer: 0.7.0 -> 0.7.3
    marsam authored Jan 19, 2020
    Copy the full SHA
    a58ddbe View commit details
Showing with 2 additions and 3 deletions.
  1. +2 −3 pkgs/tools/admin/sewer/default.nix
5 changes: 2 additions & 3 deletions pkgs/tools/admin/sewer/default.nix
Original file line number Diff line number Diff line change
@@ -2,11 +2,11 @@

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

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

propagatedBuildInputs = with python3Packages; [ pyopenssl requests tldextract ];
@@ -16,6 +16,5 @@ python3Packages.buildPythonApplication rec {
description = "ACME client";
license = licenses.mit;
maintainers = with maintainers; [ kevincox ];
platforms = platforms.linux;
};
}