nixpkgs/pkgs/development/python-modules/azure-appconfiguration/default.nix
Martin Weinelt 0215034f25 python3.pkgs: Migrate fetchers to use hash
when they already rely on SRI hashes.
2023-03-03 23:59:29 +01:00

29 lines
701 B
Nix

{ lib, buildPythonPackage, fetchPypi, azure-core
, msrest
}:
buildPythonPackage rec {
pname = "azure-appconfiguration";
version = "1.4.0";
src = fetchPypi {
inherit pname version;
extension = "zip";
hash = "sha256-fzZyT6j3K90FClJawf3o0F2TSMSu5pVqZvP8yJwTdBc=";
};
propagatedBuildInputs = [
azure-core
msrest
];
pythonImportsCheck = [ "azure.appconfiguration" ];
meta = with lib; {
description = "Microsoft App Configuration Data Library for Python";
homepage = "https://github.com/Azure/azure-sdk-for-python/tree/master/sdk/appconfiguration/azure-appconfiguration";
license = licenses.mit;
maintainers = with maintainers; [ jonringer ];
};
}