diff options
Diffstat (limited to 'pkgs/development/python-modules/azure-mgmt-containerservice')
| -rw-r--r-- | pkgs/development/python-modules/azure-mgmt-containerservice/default.nix | 39 | 
1 files changed, 39 insertions, 0 deletions
| diff --git a/pkgs/development/python-modules/azure-mgmt-containerservice/default.nix b/pkgs/development/python-modules/azure-mgmt-containerservice/default.nix new file mode 100644 index 0000000..1ef18de --- /dev/null +++ b/pkgs/development/python-modules/azure-mgmt-containerservice/default.nix @@ -0,0 +1,39 @@ +{ stdenv, buildPythonPackage, fetchPypi +, azure-common +, azure-mgmt-nspkg +, msrest +, msrestazure +}: + +buildPythonPackage rec { +  pname = "azure-mgmt-containerservice"; +  version = "3.0.1"; + +  src = fetchPypi { +    inherit pname version; +    extension = "zip"; +    sha256 = "0xjfrqk75nva8d1glfppvgqsd9cvfv4jhf8365nwfirsa2g75gya"; +  }; + +  # Fix build w/ wheel 0.31, see https://github.com/Azure/azure-storage-python/pull/443 +  postPatch = '' +    sed -i azure_bdist_wheel.py \ +      -e '1,483d' -e '/from wheel.bdist_wheel import bdist_wheel/ { s/^#//; }' +  ''; + +  propagatedBuildInputs = [ +    azure-common +    azure-mgmt-nspkg +    msrest +    msrestazure +  ]; + +  doCheck = false; + +  meta = with stdenv.lib; { +    description = "Microsoft Azure Container Service Management Client Library for Python"; +    homepage = https://github.com/Azure/azure-sdk-for-python; +    license = licenses.mit; +    maintainers = with maintainers; [ stesie ]; +  }; +} | 
