mirror of
https://github.com/SebastianWendel/nixpkgs.git
synced 2024-11-06 10:16:44 +01:00
29 lines
645 B
Nix
29 lines
645 B
Nix
{ lib, buildPythonPackage, fetchPypi, isPy27
|
|
, msrest
|
|
, mock
|
|
}:
|
|
|
|
buildPythonPackage rec {
|
|
version = "1.0.2";
|
|
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 ];
|
|
};
|
|
}
|