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

Commits on Mar 31, 2020

  1. sewer: 0.7.9 -> 0.8.1

    r-ryantm committed Mar 31, 2020
    Copy the full SHA
    51eed2c View commit details

Commits on Apr 4, 2020

  1. Merge pull request #83830 from r-ryantm/auto-update/sewer

    sewer: 0.7.9 -> 0.8.1
    kevincox authored Apr 4, 2020
    Copy the full SHA
    444801f View commit details
Showing with 3 additions and 3 deletions.
  1. +3 −3 pkgs/tools/admin/sewer/default.nix
6 changes: 3 additions & 3 deletions pkgs/tools/admin/sewer/default.nix
Original file line number Diff line number Diff line change
@@ -2,17 +2,17 @@

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

src = python3Packages.fetchPypi {
inherit pname version;
sha256 = "c083223d8aa66d4fc6801452d291a98540d1ee41557ce3e1754c62e73f7c9738";
sha256 = "0s8f0w6nv8dcs5yw7rn49981b3c9mnnx4f6wzqw4zha0rpp60z22";
};

propagatedBuildInputs = with python3Packages; [ pyopenssl requests tldextract ];

meta = with stdenv.lib; {
homepage = https://github.com/komuw/sewer;
homepage = "https://github.com/komuw/sewer";
description = "ACME client";
license = licenses.mit;
maintainers = with maintainers; [ kevincox ];