32 lines
669 B
Nix
32 lines
669 B
Nix
{ lib, buildPythonPackage, fetchPypi
|
|
, azure-common
|
|
, azure-core
|
|
, msrest
|
|
}:
|
|
|
|
buildPythonPackage rec {
|
|
pname = "azure-synapse-accesscontrol";
|
|
version = "0.4.0";
|
|
|
|
src = fetchPypi {
|
|
inherit pname version;
|
|
sha256 = "a4f32423d9facaae512c433f5460b4ceec73a6c20b44b00e9de9de7a0e86dacd";
|
|
extension = "zip";
|
|
};
|
|
|
|
propagatedBuildInputs = [
|
|
azure-common
|
|
azure-core
|
|
msrest
|
|
];
|
|
|
|
pythonImportsCheck = [ "azure.synapse.accesscontrol" ];
|
|
|
|
meta = with lib; {
|
|
description = "Azure python SDK";
|
|
homepage = "https://github.com/Azure/azure-sdk-for-python/";
|
|
license = licenses.mit;
|
|
maintainers = with maintainers; [ jonringer ];
|
|
};
|
|
}
|