12 buildPythonPackage rec {
13 pname = "pymeteoclimatic";
17 disabled = pythonOlder "3.8";
19 src = fetchFromGitHub {
21 repo = "pymeteoclimatic";
22 rev = "refs/tags/${version}";
23 hash = "sha256-rP0+OYDnQ4GuoV7DzR6jtgH6ilTMLjdaEFJcz3L0GYQ=";
26 nativeBuildInputs = [ setuptools ];
28 propagatedBuildInputs = [
33 nativeCheckInputs = [ pytestCheckHook ];
35 pythonImportsCheck = [ "meteoclimatic" ];
38 description = "Python wrapper around the Meteoclimatic service";
39 homepage = "https://github.com/adrianmo/pymeteoclimatic";
40 changelog = "https://github.com/adrianmo/pymeteoclimatic/releases/tag/${version}";
41 license = with licenses; [ mit ];
42 maintainers = with maintainers; [ fab ];