fa5436e0a7
GitOrigin-RevId: e8057b67ebf307f01bdcc8fba94d94f75039d1f6
35 lines
681 B
Nix
35 lines
681 B
Nix
{
|
|
lib,
|
|
buildPythonPackage,
|
|
fetchPypi,
|
|
msrest,
|
|
mock,
|
|
}:
|
|
|
|
buildPythonPackage rec {
|
|
version = "1.0.2";
|
|
format = "setuptools";
|
|
pname = "vsts-cd-manager";
|
|
|
|
src = fetchPypi {
|
|
inherit pname version;
|
|
sha256 = "0ys4hrmjbxl4qr26qr3dhhs27yfwn1635vwjdqh1qgjmrmcr1c0b";
|
|
};
|
|
|
|
propagatedBuildInputs = [
|
|
msrest
|
|
mock
|
|
];
|
|
|
|
# no tests included
|
|
doCheck = false;
|
|
|
|
pythonImportsCheck = [ "vsts_cd_manager" ];
|
|
|
|
meta = with lib; {
|
|
description = "Microsoft Azure API Management Client Library for Python";
|
|
homepage = "https://github.com/Azure/azure-sdk-for-python";
|
|
license = licenses.mit;
|
|
maintainers = with maintainers; [ jonringer ];
|
|
};
|
|
}
|