11 buildPythonPackage rec {
14 format = "setuptools";
16 disabled = pythonOlder "3.7";
18 src = fetchFromGitHub {
19 owner = "Danielhiversen";
21 rev = "refs/tags/${version}";
22 hash = "sha256-0QODCJmGxgSKsTbsq4jsoP3cTy/0y6hq63j36bj7Dvo=";
25 propagatedBuildInputs = [
31 pythonImportsCheck = [ "metno" ];
33 # Project has no tests
37 description = "Library to communicate with the met.no API";
38 homepage = "https://github.com/Danielhiversen/pyMetno/";
39 changelog = "https://github.com/Danielhiversen/pyMetno/releases/tag/${version}";
40 license = licenses.mit;
41 maintainers = with maintainers; [ flyfloh ];