python3Packages.env-canada: init at 0.4.0
This commit is contained in:
parent
4d420f27eb
commit
d6d0ec6e67
2 changed files with 57 additions and 0 deletions
55
pkgs/development/python-modules/env-canada/default.nix
Normal file
55
pkgs/development/python-modules/env-canada/default.nix
Normal file
|
@ -0,0 +1,55 @@
|
|||
{ lib
|
||||
, aiohttp
|
||||
, buildPythonPackage
|
||||
, fetchFromGitHub
|
||||
, geopy
|
||||
, imageio
|
||||
, pillow
|
||||
, pytestCheckHook
|
||||
, python-dateutil
|
||||
}:
|
||||
|
||||
buildPythonPackage rec {
|
||||
pname = "env-canada";
|
||||
version = "0.4.0";
|
||||
|
||||
src = fetchFromGitHub {
|
||||
owner = "michaeldavie";
|
||||
repo = "env_canada";
|
||||
rev = "v${version}";
|
||||
sha256 = "0y4yjzmg6ns7a13j1cxqvrff4fd6k97cpc1xjwqrwp7gq49rzhy7";
|
||||
};
|
||||
|
||||
propagatedBuildInputs = [
|
||||
aiohttp
|
||||
geopy
|
||||
imageio
|
||||
pillow
|
||||
python-dateutil
|
||||
];
|
||||
|
||||
checkInputs = [
|
||||
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"
|
||||
];
|
||||
|
||||
pythonImportsCheck = [ "env_canada" ];
|
||||
|
||||
meta = with lib; {
|
||||
description = "Python library to get Environment Canada weather data";
|
||||
homepage = "https://github.com/michaeldavie/env_canada";
|
||||
license = with licenses; [ mit ];
|
||||
maintainers = with maintainers; [ fab ];
|
||||
};
|
||||
}
|
|
@ -2297,6 +2297,8 @@ in {
|
|||
|
||||
enum-compat = callPackage ../development/python-modules/enum-compat { };
|
||||
|
||||
env-canada = callPackage ../development/python-modules/env-canada { };
|
||||
|
||||
envisage = callPackage ../development/python-modules/envisage { };
|
||||
|
||||
envs = callPackage ../development/python-modules/envs { };
|
||||
|
|
Loading…
Reference in a new issue