python3Packages.vsts-cd-manager: init at 1.0.2

This commit is contained in:
Jonathan Ringer 2019-10-23 00:42:14 -07:00 committed by Jon
parent 736703ab86
commit 95ead8e3df
2 changed files with 30 additions and 0 deletions

View file

@ -0,0 +1,28 @@
{ 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 ];
};
}

View file

@ -5330,6 +5330,8 @@ in {
vsts = callPackage ../development/python-modules/vsts { };
vsts-cd-manager = callPackage ../development/python-modules/vsts-cd-manager { };
python-vlc = callPackage ../development/python-modules/python-vlc { };
weasyprint = callPackage ../development/python-modules/weasyprint { };