From b6714f59cce26ddc831ca4a213e8f56476184fb1 Mon Sep 17 00:00:00 2001 From: Stefan Siegl Date: Mon, 10 Sep 2018 18:33:48 +0200 Subject: initial commit --- .../python-modules/azure-mgmt-dns/default.nix | 31 ++++++++++++++++++++++ 1 file changed, 31 insertions(+) create mode 100644 pkgs/development/python-modules/azure-mgmt-dns/default.nix (limited to 'pkgs/development/python-modules/azure-mgmt-dns') diff --git a/pkgs/development/python-modules/azure-mgmt-dns/default.nix b/pkgs/development/python-modules/azure-mgmt-dns/default.nix new file mode 100644 index 0000000..e94df85 --- /dev/null +++ b/pkgs/development/python-modules/azure-mgmt-dns/default.nix @@ -0,0 +1,31 @@ +{ stdenv, buildPythonPackage, fetchPypi +, azure-common +, azure-mgmt-nspkg +, msrestazure +}: + +buildPythonPackage rec { + pname = "azure-mgmt-dns"; + version = "2.0.0rc2"; + + src = fetchPypi { + inherit pname version; + extension = "zip"; + sha256 = "01fvqjsa4k12aaq5l7zcdrimlszhyg559in2ggsfp21fbxajbz6p"; + }; + + propagatedBuildInputs = [ + azure-common + azure-mgmt-nspkg + msrestazure + ]; + + doCheck = false; + + meta = with stdenv.lib; { + description = "Microsoft Azure DNS Management Client Library for Python"; + homepage = https://github.com/Azure/azure-sdk-for-python; + license = licenses.mit; + maintainers = with maintainers; [ stesie ]; + }; +} -- cgit v1.2.3