nixpkgs/pkgs/development/python-modules/azure-mgmt-rdbms/default.nix
2019-07-16 14:54:29 -07:00

39 lines
796 B
Nix

{ lib
, buildPythonPackage
, fetchPypi
, msrest
, msrestazure
, azure-common
, azure-mgmt-nspkg
, isPy3k
}:
buildPythonPackage rec {
pname = "azure-mgmt-rdbms";
version = "1.8.0";
src = fetchPypi {
inherit pname version;
extension = "zip";
sha256 = "40abbe4f9c59d7906594ceed067d0e7d09fef44be0d16aded5d5717f1a8aa5ea";
};
propagatedBuildInputs = [
msrest
msrestazure
azure-common
] ++ lib.optionals (!isPy3k) [
azure-mgmt-nspkg
];
# has no tests
doCheck = false;
meta = with lib; {
description = "This is the Microsoft Azure RDBMS Management Client Library";
homepage = https://github.com/Azure/azure-sdk-for-python/tree/master/azure-mgmt-rdbms;
license = licenses.mit;
maintainers = with maintainers; [ mwilsoninsight ];
};
}