pythonPackages.azure-mgmt-containerservice: init at 5.3.0

wip/yesman
Max Wilson 5 years ago committed by Wael M. Nasreddine
parent 1478e0082b
commit d67a687af8
No known key found for this signature in database
GPG Key ID: FD437548E0BF0F5F
  1. 38
      pkgs/development/python-modules/azure-mgmt-containerservice/default.nix
  2. 2
      pkgs/top-level/python-packages.nix

@ -0,0 +1,38 @@
{ lib
, buildPythonPackage
, fetchPypi
, msrest
, msrestazure
, azure-common
, azure-mgmt-nspkg
, isPy3k
}:
buildPythonPackage rec {
pname = "azure-mgmt-containerservice";
version = "5.3.0";
src = fetchPypi {
inherit pname version;
extension = "zip";
sha256 = "1dhni22n85x76709mvjmby8i8hvginzniq1dna6f5cidfcalc0vs";
};
propagatedBuildInputs = [
msrest
msrestazure
azure-common
] ++ lib.optionals (!isPy3k) [
azure-mgmt-nspkg
];
# has no tests
doCheck = false;
meta = with lib; {
description = "This is the Microsoft Azure Container Service Management Client Library";
homepage = https://github.com/Azure/sdk-for-python/tree/master/azure-mgmt-containerservice;
license = licenses.mit;
maintainers = with maintainers; [ mwilsoninsight ];
};
}

@ -304,6 +304,8 @@ in {
azure-mgmt-containerinstance = callPackage ../development/python-modules/azure-mgmt-containerinstance { };
azure-mgmt-containerservice = callPackage ../development/python-modules/azure-mgmt-containerservice { };
azure-mgmt-network = callPackage ../development/python-modules/azure-mgmt-network { };
azure-mgmt-nspkg = callPackage ../development/python-modules/azure-mgmt-nspkg { };

Loading…
Cancel
Save