nixpkgs/pkgs/development/python-modules/kombu/default.nix
R. RyanTM 3c26feda9d
python37Packages.kombu: 4.5.0 -> 4.6.3
Semi-automatic update generated by
https://github.com/ryantm/nixpkgs-update tools. This update was made
based on information from
https://repology.org/metapackage/python3.7-kombu/versions
2019-06-18 17:44:51 -05:00

26 lines
614 B
Nix

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