Merge pull request #169684 from armeenm/rabbitmq-server-python3

rabbitmq-server: switch to python3
This commit is contained in:
Manuel Bärenz 2022-04-23 16:47:35 +02:00 committed by GitHub
commit 6294d1da4a
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -3,7 +3,7 @@
, fetchurl
, erlang
, elixir
, python2
, python3
, libxml2
, libxslt
, xmlto
@ -35,8 +35,8 @@ stdenv.mkDerivation rec {
sha256 = "sha256-c6GpB6CSCHiU9hTC9FkxyTc1UpNWxx5iP3y2dbTUfS0=";
};
nativeBuildInputs = [ unzip xmlto docbook_xml_dtd_45 docbook_xsl zip rsync ];
buildInputs = [ erlang elixir python2 libxml2 libxslt glibcLocales ]
nativeBuildInputs = [ unzip xmlto docbook_xml_dtd_45 docbook_xsl zip rsync python3 ];
buildInputs = [ erlang elixir libxml2 libxslt glibcLocales ]
++ lib.optionals stdenv.isDarwin [ AppKit Carbon Cocoa ];
outputs = [ "out" "man" "doc" ];