depot/third_party/nixpkgs/pkgs/development/python-modules/pyipma/default.nix
Default email 02cf88bb76 Project import generated by Copybara.
GitOrigin-RevId: c4a0efdd5a728e20791b8d8d2f26f90ac228ee8d
2022-08-12 15:06:08 +03:00

58 lines
1 KiB
Nix

{ lib
, aiohttp
, aioresponses
, buildPythonPackage
, fetchFromGitHub
, freezegun
, mock
, geopy
, pytest-asyncio
, pytestCheckHook
, pythonOlder
}:
buildPythonPackage rec {
pname = "pyipma";
version = "3.0.2";
format = "setuptools";
disabled = pythonOlder "3.7";
src = fetchFromGitHub {
owner = "dgomes";
repo = pname;
rev = "refs/tags/${version}";
hash = "sha256-AF4bwEsAwJ5MoBQieNDFQ00LILJu+bZZttw4T5+6gkk=";
};
propagatedBuildInputs = [
aiohttp
geopy
];
checkInputs = [
aioresponses
freezegun
mock
pytest-asyncio
pytestCheckHook
];
pythonImportsCheck = [
"pyipma"
];
disabledTestPaths = [
# Tests require network access
"tests/test_auxiliar.py"
"tests/test_location.py"
"tests/test_sea_forecast.py"
];
meta = with lib; {
description = "Library to retrieve information from Instituto Português do Mar e Atmosfera";
homepage = "https://github.com/dgomes/pyipma";
license = with licenses; [ mit ];
maintainers = with maintainers; [ fab ];
};
}