nixpkgs/pkgs/development/python-modules/azure-common/default.nix

39 lines
909 B
Nix
Raw Normal View History

{ lib
, buildPythonPackage
, fetchPypi
, azure-nspkg
, isPyPy
, setuptools
, python
2019-04-29 21:09:05 +00:00
, isPy3k
}:
buildPythonPackage rec {
version = "1.1.25";
pname = "azure-common";
disabled = isPyPy;
src = fetchPypi {
inherit pname version;
extension = "zip";
sha256 = "ce0f1013e6d0e9faebaf3188cc069f4892fc60a6ec552e3f817c1a2f92835054";
};
2019-04-29 21:09:05 +00:00
propagatedBuildInputs = [
azure-nspkg
] ++ lib.optionals (!isPy3k) [ setuptools ]; # need for namespace lookup
2019-04-29 21:09:05 +00:00
postInstall = if isPy3k then "" else ''
echo "__import__('pkg_resources').declare_namespace(__name__)" >> "$out/lib/${python.libPrefix}"/site-packages/azure/__init__.py
'';
2019-04-29 21:09:05 +00:00
doCheck = false;
meta = with lib; {
2019-04-29 21:09:05 +00:00
description = "This is the Microsoft Azure common code";
homepage = "https://github.com/Azure/azure-sdk-for-python";
2019-04-29 21:09:05 +00:00
license = licenses.mit;
2020-11-15 14:35:46 +00:00
maintainers = with maintainers; [ olcai maxwilson ];
};
}