9c6ee729d6
GitOrigin-RevId: 6cee3b5893090b0f5f0a06b4cf42ca4e60e5d222
69 lines
1.3 KiB
Nix
69 lines
1.3 KiB
Nix
{ lib
|
|
, aiohttp
|
|
, buildPythonPackage
|
|
, fetchFromGitHub
|
|
, geopy
|
|
, imageio
|
|
, lxml
|
|
, pandas
|
|
, pillow
|
|
, pytestCheckHook
|
|
, python-dateutil
|
|
, pythonOlder
|
|
, voluptuous
|
|
}:
|
|
|
|
buildPythonPackage rec {
|
|
pname = "env-canada";
|
|
version = "0.5.35";
|
|
format = "setuptools";
|
|
|
|
disabled = pythonOlder "3.8";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "michaeldavie";
|
|
repo = "env_canada";
|
|
rev = "refs/tags/v${version}";
|
|
hash = "sha256-gHHLKviU1ZHrlBp4R3WqAwEGWiM7VuB7lOYiUIJ1J7A=";
|
|
};
|
|
|
|
propagatedBuildInputs = [
|
|
aiohttp
|
|
geopy
|
|
imageio
|
|
lxml
|
|
pandas
|
|
pillow
|
|
python-dateutil
|
|
voluptuous
|
|
];
|
|
|
|
nativeCheckInputs = [
|
|
pytestCheckHook
|
|
];
|
|
|
|
disabledTests = [
|
|
# Tests require network access
|
|
"test_get_aqhi_regions"
|
|
"test_update"
|
|
"test_get_hydro_sites"
|
|
"test_echydro"
|
|
"test_get_dimensions"
|
|
"test_get_latest_frame"
|
|
"test_get_loop"
|
|
"test_get_ec_sites"
|
|
"test_ecradar"
|
|
];
|
|
|
|
pythonImportsCheck = [
|
|
"env_canada"
|
|
];
|
|
|
|
meta = with lib; {
|
|
description = "Python library to get Environment Canada weather data";
|
|
homepage = "https://github.com/michaeldavie/env_canada";
|
|
changelog = "https://github.com/michaeldavie/env_canada/blob/v${version}/CHANGELOG.md";
|
|
license = with licenses; [ mit ];
|
|
maintainers = with maintainers; [ fab ];
|
|
};
|
|
}
|