Merge pull request #119126 from fabaff/pycomfoconnect
[NixPkgs.git] / pkgs / development / python-modules / azure-synapse-accesscontrol / default.nix
blobb9a6a40e733c45b027dcddaf57e5d9ad58ed29a6
1 { lib, buildPythonPackage, fetchPypi
2 , azure-common
3 , azure-core
4 , msrest
5 }:
7 buildPythonPackage rec {
8   pname = "azure-synapse-accesscontrol";
9   version = "0.6.0";
11   src = fetchPypi {
12     inherit pname version;
13     sha256 = "2f8f71561ca30ff3b04b172f5a64b231baeb02f4bce4bd6763df93a178c8b5d7";
14     extension = "zip";
15   };
17   propagatedBuildInputs = [
18     azure-common
19     azure-core
20     msrest
21   ];
23   pythonImportsCheck = [ "azure.synapse.accesscontrol" ];
25   meta = with lib; {
26     description = "Azure python SDK";
27     homepage = "https://github.com/Azure/azure-sdk-for-python/";
28     license = licenses.mit;
29     maintainers = with maintainers; [ jonringer ];
30   };