mirror of
https://github.com/SebastianWendel/nixpkgs.git
synced 2024-11-05 17:56:46 +01:00
python3Packages.azure-mgmt-servicelinker: init at 1.0.0b1
This commit is contained in:
parent
fc4a44d29a
commit
7a29d47832
|
@ -0,0 +1,36 @@
|
|||
{ lib
|
||||
, buildPythonPackage
|
||||
, fetchPypi
|
||||
, azure-common
|
||||
, azure-mgmt-core
|
||||
, msrest
|
||||
}:
|
||||
|
||||
buildPythonPackage rec {
|
||||
pname = "azure-mgmt-servicelinker";
|
||||
version = "1.0.0b1";
|
||||
|
||||
src = fetchPypi {
|
||||
inherit pname version;
|
||||
sha256 = "4f70d3bcd98ba539bfef870e3c497ebdc5efed3200c2627a61718baa9ab21a61";
|
||||
extension = "zip";
|
||||
};
|
||||
|
||||
propagatedBuildInputs = [
|
||||
azure-common
|
||||
azure-mgmt-core
|
||||
msrest
|
||||
];
|
||||
|
||||
pythonImportsCheck = [ "azure.mgmt.servicelinker" ];
|
||||
|
||||
# no tests with sdist
|
||||
doCheck = false;
|
||||
|
||||
meta = with lib; {
|
||||
description = "Microsoft Azure Servicelinker Management Client Library for Python";
|
||||
homepage = "https://github.com/Azure/azure-sdk-for-python";
|
||||
license = licenses.mit;
|
||||
maintainers = with maintainers; [ jonringer ];
|
||||
};
|
||||
}
|
|
@ -969,6 +969,8 @@ in {
|
|||
|
||||
azure-mgmt-servicefabricmanagedclusters = callPackage ../development/python-modules/azure-mgmt-servicefabricmanagedclusters { };
|
||||
|
||||
azure-mgmt-servicelinker = callPackage ../development/python-modules/azure-mgmt-servicelinker { };
|
||||
|
||||
azure-mgmt-signalr = callPackage ../development/python-modules/azure-mgmt-signalr { };
|
||||
|
||||
azure-mgmt-sql = callPackage ../development/python-modules/azure-mgmt-sql { };
|
||||
|
|
Loading…
Reference in a new issue