mirror of
https://github.com/ilyakooo0/nixpkgs.git
synced 2024-11-15 03:15:56 +03:00
pythonPackages.vsts: init at 0.1.25
This commit is contained in:
parent
d0453ef9ce
commit
2e1a90e5d0
30
pkgs/development/python-modules/vsts/default.nix
Normal file
30
pkgs/development/python-modules/vsts/default.nix
Normal 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 ];
|
||||
};
|
||||
}
|
@ -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 { };
|
||||
|
Loading…
Reference in New Issue
Block a user