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: 08c4f9056e6a
Choose a base ref
...
head repository: NixOS/nixpkgs
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: ed32406c747a
Choose a head ref
  • 1 commit
  • 1 file changed
  • 1 contributor

Commits on Jan 22, 2021

  1. python3Packages.multidict: 5.0.2 -> 5.1.0

    dotlambda authored and FRidh committed Jan 22, 2021

    Verified

    This commit was signed with the committer’s verified signature. The key has expired.
    dhess Drew Hess
    Copy the full SHA
    ed32406 View commit details
Showing with 4 additions and 7 deletions.
  1. +4 −7 pkgs/development/python-modules/multidict/default.nix
11 changes: 4 additions & 7 deletions pkgs/development/python-modules/multidict/default.nix
Original file line number Diff line number Diff line change
@@ -1,25 +1,22 @@
{ lib
, fetchPypi
, buildPythonPackage
, pytest, pytestrunner, pytestcov
, pytestCheckHook, pytestrunner, pytestcov
, isPy3k
, isPy38
}:

buildPythonPackage rec {
pname = "multidict";
version = "5.0.2";
version = "5.1.0";

src = fetchPypi {
inherit pname version;
sha256 = "e5bf89fe57f702a046c7ec718fe330ed50efd4bcf74722940db2eb0919cddb1c";
sha256 = "25b4e5f22d3a37ddf3effc0710ba692cfc792c2b9edfb9c05aefe823256e84d5";
};

checkInputs = [ pytest pytestrunner pytestcov ];
checkInputs = [ pytestCheckHook pytestrunner pytestcov ];

disabled = !isPy3k;
# pickle files needed for 3.8 https://github.com/aio-libs/multidict/pull/363
doCheck = !isPy38;

meta = with lib; {
description = "Multidict implementation";