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=";
29 build-system = [ setuptools ];
43 pythonImportsCheck = [ "meteoswiss_async" ];
46 description = "Asynchronous client library for MeteoSwiss API";
47 homepage = "https://github.com/albertomontesg/meteoswiss-async";
48 changelog = "https://github.com/albertomontesg/meteoswiss-async/releases/tag/${version}";
49 license = lib.licenses.mit;
50 maintainers = with lib.maintainers; [ fab ];