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

Commits on Mar 31, 2019

  1. python.pkgs.amqp: 2.4.1 -> 2.4.2

    Robert Schütz committed Mar 31, 2019
    Copy the full SHA
    5964eb6 View commit details
  2. python.pkgs.vine: 1.2.0 -> 1.3.0

    Robert Schütz committed Mar 31, 2019
    Copy the full SHA
    6b3bd58 View commit details
  3. python.pkgs.kombu: 4.3.0 -> 4.5.0

    Robert Schütz committed Mar 31, 2019
    Copy the full SHA
    ccb6fee View commit details
  4. python.pkgs.celery: 4.3.0rc1 -> 4.3.0

    Robert Schütz committed Mar 31, 2019
    Copy the full SHA
    2d1dbba View commit details

Commits on Apr 1, 2019

  1. Merge pull request #58628 from dotlambda/celery-4.3

    python.pkgs.celery: 4.3.0rc1 -> 4.3.0
    dotlambda authored Apr 1, 2019
    Copy the full SHA
    6cafad4 View commit details
4 changes: 2 additions & 2 deletions pkgs/development/python-modules/amqp/default.nix
Original file line number Diff line number Diff line change
@@ -2,11 +2,11 @@

buildPythonPackage rec {
pname = "amqp";
version = "2.4.1";
version = "2.4.2";

src = fetchPypi {
inherit pname version;
sha256 = "6816eed27521293ee03aa9ace300a07215b11fee4e845588a9b863a7ba30addb";
sha256 = "043beb485774ca69718a35602089e524f87168268f0d1ae115f28b88d27f92d7";
};

checkInputs = [ pytest case pytest-sugar ];
9 changes: 7 additions & 2 deletions pkgs/development/python-modules/celery/default.nix
Original file line number Diff line number Diff line change
@@ -4,13 +4,18 @@

buildPythonPackage rec {
pname = "celery";
version = "4.3.0rc1";
version = "4.3.0";

src = fetchPypi {
inherit pname version;
sha256 = "1jmg47l0b3bnwmg44x48bwziwyk6xqs1y5plvr99a3ikz1l807yf";
sha256 = "4c4532aa683f170f40bd76f928b70bc06ff171a959e06e71bf35f2f9d6031ef9";
};

postPatch = ''
substituteInPlace requirements/test.txt \
--replace "pytest>=4.3.1,<4.4.0" pytest
'';

# make /etc/protocols accessible to fix socket.getprotobyname('tcp') in sandbox
preCheck = stdenv.lib.optionalString stdenv.isLinux ''
export NIX_REDIRECTS=/etc/protocols=${iana-etc}/etc/protocols \
4 changes: 2 additions & 2 deletions pkgs/development/python-modules/kombu/default.nix
Original file line number Diff line number Diff line change
@@ -2,11 +2,11 @@

buildPythonPackage rec {
pname = "kombu";
version = "4.3.0";
version = "4.5.0";

src = fetchPypi {
inherit pname version;
sha256 = "529df9e0ecc0bad9fc2b376c3ce4796c41b482cf697b78b71aea6ebe7ca353c8";
sha256 = "389ba09e03b15b55b1a7371a441c894fd8121d174f5583bbbca032b9ea8c9edd";
};

postPatch = ''
4 changes: 2 additions & 2 deletions pkgs/development/python-modules/vine/default.nix
Original file line number Diff line number Diff line change
@@ -3,13 +3,13 @@

buildPythonPackage rec {
pname = "vine";
version = "1.2.0";
version = "1.3.0";

disable = pythonOlder "2.7";

src = fetchPypi {
inherit pname version;
sha256 = "0xjz2sjbr5jrpjk411b7alkghdskhphgsqqrbi7abqfh2pli6j7f";
sha256 = "133ee6d7a9016f177ddeaf191c1f58421a1dcc6ee9a42c58b34bed40e1d2cd87";
};

buildInputs = [ case pytest ];