3
0
Fork 0
forked from mirrors/nixpkgs

python.pkgs.kombu: 4.0.2 -> 4.2.1

This commit is contained in:
Robert Schütz 2018-07-14 13:19:09 +02:00
parent af17bfdedf
commit 5d59194820
2 changed files with 26 additions and 27 deletions

View file

@ -0,0 +1,25 @@
{ lib, buildPythonPackage, fetchPypi, pytest, case, pytz, amqp }:
buildPythonPackage rec {
pname = "kombu";
version = "4.2.1";
src = fetchPypi {
inherit pname version;
sha256 = "86adec6c60f63124e2082ea8481bbe4ebe04fde8ebed32c177c7f0cd2c1c9082";
};
postPatch = ''
substituteInPlace requirements/test.txt --replace "pytest-sugar" ""
'';
checkInputs = [ pytest case pytz ];
propagatedBuildInputs = [ amqp ];
meta = with lib; {
description = "Messaging library for Python";
homepage = https://github.com/celery/kombu;
license = licenses.bsd3;
};
}

View file

@ -6934,33 +6934,7 @@ in {
koji = callPackage ../development/python-modules/koji { };
kombu = buildPythonPackage rec {
name = "kombu-${version}";
version = "4.0.2";
src = pkgs.fetchurl {
url = "mirror://pypi/k/kombu/${name}.tar.gz";
sha256 = "18hiricdnbnlz6hx3hbaa4dni6npv8rbid4dhf7k02k16qm6zz6h";
};
# Backport fix for python-3.6 from master (see issue https://github.com/celery/kombu/issues/675)
# TODO remove at next update
patches = [ (pkgs.fetchpatch {
url = "https://github.com/celery/kombu/commit/dc3fceff59d79ceac3f8f11a5d697beabb4b7a7f.patch";
sha256 = "0s6gsihzjvmpffc7xrrcijw00r56yb74jg0sbjgng2v1324z1da9";
name = "don-t-modify-dict-size-while-iterating-over-it";
}) ];
buildInputs = with self; [ pytest case pytz ];
propagatedBuildInputs = with self; [ amqp ];
meta = {
description = "Messaging library for Python";
homepage = "https://github.com/celery/kombu";
license = licenses.bsd3;
};
};
kombu = callPackage ../development/python-modules/kombu { };
konfig = callPackage ../development/python-modules/konfig { };