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

Commits on Jan 16, 2018

  1. pythonPackages.multidict: 3.3.2 -> 4.0.0

    Robert Schütz committed Jan 16, 2018
    Copy the full SHA
    2e99541 View commit details

Commits on Jan 21, 2018

  1. Merge pull request #33931 from dotlambda/multidict

    pythonPackages.multidict: 3.3.2 -> 4.0.0
    primeos authored Jan 21, 2018
    Copy the full SHA
    58e7823 View commit details
Showing with 2 additions and 2 deletions.
  1. +2 −2 pkgs/development/python-modules/multidict/default.nix
4 changes: 2 additions & 2 deletions pkgs/development/python-modules/multidict/default.nix
Original file line number Diff line number Diff line change
@@ -8,13 +8,13 @@

let
pname = "multidict";
version = "3.3.2";
version = "4.0.0";
in buildPythonPackage rec {
name = "${pname}-${version}";

src = fetchurl {
url = "mirror://pypi/${builtins.substring 0 1 pname}/${pname}/${name}.tar.gz";
sha256 = "f82e61c7408ed0dce1862100db55595481911f159d6ddec0b375d35b6449509b";
sha256 = "0y0pg3r9hlknny0zwg906wz81h8in6lgvnpbmzvl911bmnrqc95p";
};

buildInputs = [ cython ];