mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-12-18 11:44:07 +00:00
0215034f25
when they already rely on SRI hashes.
32 lines
716 B
Nix
32 lines
716 B
Nix
{ lib, buildPythonPackage, fetchPypi
|
|
, azure-common
|
|
, azure-mgmt-core
|
|
, msrest
|
|
}:
|
|
|
|
buildPythonPackage rec {
|
|
pname = "azure-mgmt-extendedlocation";
|
|
version = "1.1.0";
|
|
|
|
src = fetchPypi {
|
|
inherit pname version;
|
|
extension = "zip";
|
|
hash = "sha256-jRo6EFP8Dg3i9U8HLfjED9QFfWbdg+X3o9PSf4eus9o=";
|
|
};
|
|
|
|
propagatedBuildInputs = [
|
|
azure-common
|
|
azure-mgmt-core
|
|
msrest
|
|
];
|
|
|
|
pythonImportsCheck = [ "azure.mgmt.extendedlocation" ];
|
|
|
|
meta = with lib; {
|
|
description = "Microsoft Azure Extendedlocation Management Client Library for Python";
|
|
homepage = "https://github.com/Azure/azure-sdk-for-python";
|
|
license = licenses.mit;
|
|
maintainers = with maintainers; [ jonringer ];
|
|
};
|
|
}
|