depot/third_party/nixpkgs/pkgs/development/python-modules/apple-weatherkit/default.nix
Default email fa5436e0a7 Project import generated by Copybara.
GitOrigin-RevId: e8057b67ebf307f01bdcc8fba94d94f75039d1f6
2024-06-05 17:53:02 +02:00

46 lines
1,001 B
Nix

{
lib,
buildPythonPackage,
fetchFromGitHub,
poetry-core,
aiohttp,
aiohttp-retry,
pythonOlder,
pyjwt,
}:
buildPythonPackage rec {
pname = "apple-weatherkit";
version = "1.1.2";
format = "pyproject";
disabled = pythonOlder "3.11";
src = fetchFromGitHub {
owner = "tjhorner";
repo = "python-weatherkit";
rev = "refs/tags/v${version}";
hash = "sha256-w3KinicaF01I6fIidI7XYHpB8eq52RTUw/BMLrx6Grk=";
};
nativeBuildInputs = [ poetry-core ];
propagatedBuildInputs = [
aiohttp
aiohttp-retry
pyjwt
] ++ pyjwt.optional-dependencies.crypto;
# Module has no tests
doCheck = false;
pythonImportsCheck = [ "apple_weatherkit" ];
meta = with lib; {
description = "Python library for Apple WeatherKit";
homepage = "https://github.com/tjhorner/python-weatherkit";
changelog = "https://github.com/tjhorner/python-weatherkit/releases/tag/v${version}";
license = licenses.mit;
maintainers = with maintainers; [ fab ];
};
}