mirror of
https://github.com/NixOS/nixpkgs.git
synced 2026-09-01 21:24:42 +00:00
python3Packages.pygeosphere-warnings: init at 0.1.2 (#551282)
This commit is contained in:
@@ -0,0 +1,41 @@
|
||||
{
|
||||
lib,
|
||||
aiohttp,
|
||||
buildPythonPackage,
|
||||
fetchFromGitHub,
|
||||
hatchling,
|
||||
pytest-asyncio,
|
||||
pytestCheckHook,
|
||||
}:
|
||||
|
||||
buildPythonPackage (finalAttrs: {
|
||||
pname = "pygeosphere-warnings";
|
||||
version = "0.1.2";
|
||||
pyproject = true;
|
||||
|
||||
src = fetchFromGitHub {
|
||||
owner = "tklecka";
|
||||
repo = "pygeosphere-warnings";
|
||||
tag = "v${finalAttrs.version}";
|
||||
hash = "sha256-AQ2TQk5N+S4bW0OmrZj0la2UMIdpmxBUCMhbIkszm3g=";
|
||||
};
|
||||
|
||||
build-system = [ hatchling ];
|
||||
|
||||
dependencies = [ aiohttp ];
|
||||
|
||||
nativeCheckInputs = [
|
||||
pytest-asyncio
|
||||
pytestCheckHook
|
||||
];
|
||||
|
||||
pythonImportsCheck = [ "pygeosphere_warnings" ];
|
||||
|
||||
meta = {
|
||||
description = "Asynchronous Python client for the GeoSphere Austria Warn API";
|
||||
homepage = "https://github.com/tklecka/pygeosphere-warnings";
|
||||
changelog = "https://github.com/tklecka/pygeosphere-warnings/releases/tag/${finalAttrs.src.tag}";
|
||||
license = lib.licenses.mit;
|
||||
maintainers = [ lib.maintainers.jamiemagee ];
|
||||
};
|
||||
})
|
||||
@@ -2324,7 +2324,8 @@
|
||||
];
|
||||
"geosphere_austria_warnings" =
|
||||
ps: with ps; [
|
||||
]; # missing inputs: pygeosphere-warnings
|
||||
pygeosphere-warnings
|
||||
];
|
||||
"ghost" =
|
||||
ps: with ps; [
|
||||
aioghost
|
||||
@@ -8319,6 +8320,7 @@
|
||||
"geofency"
|
||||
"geonetnz_quakes"
|
||||
"geonetnz_volcano"
|
||||
"geosphere_austria_warnings"
|
||||
"ghost"
|
||||
"gios"
|
||||
"github"
|
||||
|
||||
@@ -14746,6 +14746,8 @@ self: super: with self; {
|
||||
|
||||
pygeocodio = callPackage ../development/python-modules/pygeocodio { };
|
||||
|
||||
pygeosphere-warnings = callPackage ../development/python-modules/pygeosphere-warnings { };
|
||||
|
||||
pygerber = callPackage ../development/python-modules/pygerber { };
|
||||
|
||||
pygetwindow = callPackage ../development/python-modules/pygetwindow { };
|
||||
|
||||
Reference in New Issue
Block a user