nixpkgs/pkgs/development/python-modules/azure-mgmt-resource/default.nix
Marek Mahut bdeae5c1ca
Merge pull request #62515 from r-ryantm/auto-update/python3.7-azure-mgmt-resource
python37Packages.azure-mgmt-resource: 2.1.0 -> 2.2.0
2019-08-10 15:57:06 +02:00

37 lines
993 B
Nix

{ pkgs
, buildPythonPackage
, fetchPypi
, python
, azure-mgmt-common
, isPy3k
}:
buildPythonPackage rec {
version = "2.2.0";
pname = "azure-mgmt-resource";
src = fetchPypi {
inherit pname version;
extension = "zip";
sha256 = "173pxgly95dwblp4nj4l70zb0gasibgcjmcynxwa5282plynhgdw";
};
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 ];
# has no tests
doCheck = false;
meta = with pkgs.lib; {
description = "Microsoft Azure SDK for Python";
homepage = https://docs.microsoft.com/en-us/python/api/overview/azure/resources?view=azure-python;
license = licenses.mit;
maintainers = with maintainers; [ olcai mwilsoninsight ];
};
}