pythonPackages.rabbitpy: 1.0.0 -> 2.0.1

gstqt5
Robert Scott 2020-09-13 18:57:34 +01:00 committed by Jon
parent 178d1b119c
commit 16ed0c3069
1 changed files with 3 additions and 3 deletions

View File

@ -7,7 +7,7 @@
}:
buildPythonPackage rec {
version = "1.0.0";
version = "2.0.1";
pname = "rabbitpy";
# No tests in the pypi tarball, so we directly fetch from git
@ -15,7 +15,7 @@ buildPythonPackage rec {
owner = "gmr";
repo = pname;
rev = version;
sha256 = "0fd80zlr4p2sh77rxyyfi9l0h2zqi2csgadr0rhnpgpqsy10qck6";
sha256 = "0m5z3i3d5adrz1wh6y35xjlls3cq6p4y9p1mzghw3k7hdvg26cck";
};
propagatedBuildInputs = [ pamqp ];
@ -31,7 +31,7 @@ buildPythonPackage rec {
postPatch = ''
# See: https://github.com/gmr/rabbitpy/issues/118
substituteInPlace setup.py \
--replace 'pamqp>=1.6.1,<2.0' 'pamqp'
--replace 'pamqp>=2,<3' 'pamqp'
'';
meta = with stdenv.lib; {