15 buildPythonPackage rec {
16 pname = "meteoswiss-async";
20 disabled = pythonOlder "3.11";
22 src = fetchFromGitHub {
23 owner = "albertomontesg";
24 repo = "meteoswiss-async";
25 rev = "refs/tags/${version}";
26 hash = "sha256-xFvfyLZvBfnbzShKN+94piNUVjV1cfi4jWpc/Xw6XG4=";
34 build-system = [ setuptools ];
48 pythonImportsCheck = [ "meteoswiss_async" ];
51 description = "Asynchronous client library for MeteoSwiss API";
52 homepage = "https://github.com/albertomontesg/meteoswiss-async";
53 changelog = "https://github.com/albertomontesg/meteoswiss-async/releases/tag/${version}";
54 license = lib.licenses.mit;
55 maintainers = with lib.maintainers; [ fab ];