f34ce41345
GitOrigin-RevId: b73c2221a46c13557b1b3be9c2070cc42cf01eb3
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,
|
|
setuptools,
|
|
voluptuous,
|
|
}:
|
|
|
|
buildPythonPackage rec {
|
|
pname = "env-canada";
|
|
version = "0.7.2";
|
|
pyproject = true;
|
|
|
|
disabled = pythonOlder "3.8";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "michaeldavie";
|
|
repo = "env_canada";
|
|
rev = "refs/tags/v${version}";
|
|
hash = "sha256-3SVpzWii9/ViJ7mbrqzKmN5FkOOYTeYdhJll6q/IseU=";
|
|
};
|
|
|
|
build-system = [ setuptools ];
|
|
|
|
dependencies = [
|
|
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 ];
|
|
};
|
|
}
|