pythonPackages.python3pika: drop
Pika already supports Python3, and python3pika wasn't updated since 2014
This commit is contained in:
parent
c800464bc7
commit
11900ffe33
|
@ -1,33 +0,0 @@
|
|||
{ stdenv
|
||||
, buildPythonPackage
|
||||
, fetchPypi
|
||||
, isPy3k
|
||||
, nose
|
||||
, mock
|
||||
, pyyaml
|
||||
, unittest2
|
||||
}:
|
||||
|
||||
buildPythonPackage rec {
|
||||
pname = "python3-pika";
|
||||
version = "0.9.14";
|
||||
disabled = !isPy3k;
|
||||
|
||||
src = fetchPypi {
|
||||
inherit pname version;
|
||||
sha256 = "1c3hifwvn04kvlja88iawf0awyz726jynwnpcb6gn7376b4nfch7";
|
||||
};
|
||||
|
||||
# Unit tests adds dependencies on pyev, tornado and twisted (and twisted is disabled for Python 3)
|
||||
doCheck = false;
|
||||
|
||||
buildInputs = [ nose mock pyyaml ];
|
||||
propagatedBuildInputs = [ unittest2 ];
|
||||
|
||||
meta = with stdenv.lib; {
|
||||
homepage = https://pika.readthedocs.org/;
|
||||
description = "Pika Python AMQP Client Library";
|
||||
license = licenses.gpl2;
|
||||
};
|
||||
|
||||
}
|
|
@ -4235,8 +4235,6 @@ in {
|
|||
|
||||
pysoundfile = self.soundfile; # Alias added 23-06-2019
|
||||
|
||||
python3pika = callPackage ../development/python-modules/python3pika { };
|
||||
|
||||
python-jenkins = callPackage ../development/python-modules/python-jenkins { };
|
||||
|
||||
pystringtemplate = callPackage ../development/python-modules/stringtemplate { };
|
||||
|
|
Loading…
Reference in New Issue