47 lines
827 B
Nix
47 lines
827 B
Nix
{ lib, buildPythonPackage, fetchPypi, isPy3k
|
|
, certifi
|
|
, CFNetwork
|
|
, cmake
|
|
, enum34
|
|
, openssl
|
|
, Security
|
|
, six
|
|
, stdenv
|
|
}:
|
|
|
|
buildPythonPackage rec {
|
|
pname = "uamqp";
|
|
version = "1.2.5";
|
|
|
|
src = fetchPypi {
|
|
inherit pname version;
|
|
sha256 = "02d78242fcd0a58489aaf275964a6cf7581d7a2334ee240d2d547f8aca8607c6";
|
|
};
|
|
|
|
buildInputs = [
|
|
openssl
|
|
certifi
|
|
six
|
|
] ++ lib.optionals (!isPy3k) [
|
|
enum34
|
|
] ++ lib.optionals stdenv.isDarwin [
|
|
CFNetwork Security
|
|
];
|
|
|
|
dontUseCmakeConfigure = true;
|
|
|
|
nativeBuildInputs = [
|
|
cmake
|
|
];
|
|
|
|
# has no tests
|
|
doCheck = false;
|
|
|
|
meta = with lib; {
|
|
description = "An AMQP 1.0 client library for Python";
|
|
homepage = https://github.com/Azure/azure-uamqp-python;
|
|
license = licenses.mit;
|
|
maintainers = with maintainers; [ mwilsoninsight ];
|
|
};
|
|
}
|