pythonPackages.vsts: init at 0.1.25

This commit is contained in:
Jonathan Ringer 2019-06-15 21:58:19 -07:00 committed by Frederik Rietdijk
parent d0453ef9ce
commit 2e1a90e5d0
2 changed files with 32 additions and 0 deletions

View File

@ -0,0 +1,30 @@
{ buildPythonPackage
, lib
, python
, fetchPypi
, msrest
}:
buildPythonPackage rec {
version = "0.1.25";
pname = "vsts";
src = fetchPypi {
inherit pname version;
sha256 = "15sgwqa72ynpahj101r2kc15s3dnsafg5gqx0sz3hnqz29h925ys";
};
propagatedBuildInputs = [ msrest ];
# Tests are highly impure
checkPhase = ''
${python.interpreter} -c 'import vsts.version; print(vsts.version.VERSION)'
'';
meta = with lib; {
description = "Python APIs for interacting with and managing Azure DevOps";
homepage = https://github.com/microsoft/azure-devops-python-api;
license = licenses.mit;
maintainers = with maintainers; [ jonringer ];
};
}

View File

@ -4637,6 +4637,8 @@ in {
virtualenv = callPackage ../development/python-modules/virtualenv { };
vsts = callPackage ../development/python-modules/vsts { };
weasyprint = callPackage ../development/python-modules/weasyprint { };
webassets = callPackage ../development/python-modules/webassets { };