pythonPackages.azure-mgmt-network: 2.5.1 -> 2.6.0

wip/yesman
Max Wilson 5 years ago committed by Wael M. Nasreddine
parent 3f669b4e54
commit 51eac93460
No known key found for this signature in database
GPG Key ID: FD437548E0BF0F5F
  1. 24
      pkgs/development/python-modules/azure-mgmt-network/default.nix

@ -1,31 +1,37 @@
{ pkgs
{ lib
, buildPythonPackage
, fetchPypi
, azure-mgmt-common
, python
, isPy3k
}:
buildPythonPackage rec {
version = "2.5.1";
version = "2.6.0";
pname = "azure-mgmt-network";
src = fetchPypi {
inherit pname version;
extension = "zip";
sha256 = "cef9bf5d36700966e52f7cea86e29c622bc5bbb92d0ce7a75420e29fb0e75f45";
sha256 = "0166646703389374736cbe045ffb874e08796407ea0b1b5d441143b054a47e09";
};
postInstall = ''
postInstall = if isPy3k then "" else ''
echo "__import__('pkg_resources').declare_namespace(__name__)" >> "$out/lib/${python.libPrefix}"/site-packages/azure/__init__.py
echo "__import__('pkg_resources').declare_namespace(__name__)" >> "$out/lib/${python.libPrefix}"/site-packages/azure/mgmt/__init__.py
'';
propagatedBuildInputs = [ azure-mgmt-common ];
propagatedBuildInputs = [
azure-mgmt-common
];
meta = with pkgs.lib; {
# has no tests
doCheck = false;
meta = with lib; {
description = "Microsoft Azure SDK for Python";
homepage = "https://azure.microsoft.com/en-us/develop/python/";
license = licenses.asl20;
maintainers = with maintainers; [ olcai ];
homepage = https://docs.microsoft.com/en-us/python/api/overview/azure/network?view=azure-python;
license = licenses.mit;
maintainers = with maintainers; [ olcai mwilsoninsight ];
};
}

Loading…
Cancel
Save