python3Packages.mvg: init at 1.6.0 (#494247)

This commit is contained in:
Martin Weinelt 2026-03-01 21:06:57 +00:00 committed by GitHub
commit 61ba195f41
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
3 changed files with 49 additions and 1 deletions

View file

@ -0,0 +1,45 @@
{
lib,
aiohttp,
buildPythonPackage,
fetchPypi,
furl,
hatchling,
pytestCheckHook,
pytest-asyncio,
}:
buildPythonPackage (finalAttrs: {
pname = "mvg";
version = "1.6.0";
pyproject = true;
src = fetchPypi {
inherit (finalAttrs) pname version;
hash = "sha256-jpk6DUaQYtL7OHDOznhgAp0N8qao0wQI5benfPXwhJI=";
};
build-system = [ hatchling ];
dependencies = [
aiohttp
furl
];
nativeCheckInputs = [
pytest-asyncio
pytestCheckHook
];
# tests require network access
doCheck = false;
pythonImportsCheck = [ "mvg" ];
meta = {
description = "An unofficial interface to timetable information of the Münchner Verkehrsgesellschaft (MVG)";
homepage = "https://github.com/mondbaron/mvg";
license = lib.licenses.mit;
maintainers = [ lib.maintainers.jamiemagee ];
};
})

View file

@ -4000,7 +4000,8 @@
];
"mvglive" =
ps: with ps; [
]; # missing inputs: mvg
mvg
];
"my" =
ps: with ps; [
home-assistant-frontend

View file

@ -10314,6 +10314,8 @@ self: super: with self; {
mutf8 = callPackage ../development/python-modules/mutf8 { };
mvg = callPackage ../development/python-modules/mvg { };
mwcli = callPackage ../development/python-modules/mwcli { };
mwclient = callPackage ../development/python-modules/mwclient { };