ansible-later: 2.0.22 -> 2.0.23
[NixPkgs.git] / pkgs / development / python-modules / azure-appconfiguration / default.nix
blobee7f9fd44ff409ef06bfa4683f7ec16fc4defb06
1 { lib, buildPythonPackage, fetchPypi, azure-core
2 , msrest
3 }:
5 buildPythonPackage rec {
6   pname = "azure-appconfiguration";
7   version = "1.3.0";
9   src = fetchPypi {
10     inherit pname version;
11     extension = "zip";
12     sha256 = "9372467c74930d20827135d468b7fcaa1ad42e4673a4591ceadbb6ad8e1b7e07";
13   };
15   propagatedBuildInputs = [
16     azure-core
17     msrest
18   ];
20   pythonImportsCheck = [ "azure.appconfiguration" ];
22   meta = with lib; {
23     description = "Microsoft App Configuration Data Library for Python";
24     homepage = "https://github.com/Azure/azure-sdk-for-python/tree/master/sdk/appconfiguration/azure-appconfiguration";
25     license = licenses.mit;
26     maintainers = with maintainers; [ jonringer ];
27   };