python3Packages.python-citybikes: init at 0.3.3

This commit is contained in:
Robert Schütz
2025-11-05 10:01:18 -08:00
parent 235995c481
commit 4328c8f8f5
2 changed files with 52 additions and 0 deletions
@@ -0,0 +1,50 @@
{
aiohttp,
buildPythonPackage,
fetchFromGitHub,
lib,
pytest-aiohttp,
pytest-asyncio,
pytestCheckHook,
requests,
responses,
setuptools,
}:
buildPythonPackage rec {
pname = "python-citybikes";
version = "0.3.3";
pyproject = true;
src = fetchFromGitHub {
owner = "eskerda";
repo = "python-citybikes";
tag = version;
hash = "sha256-it/QCUwNc6g88IrtMTS8wr/t4Apb2ovSheufOnu4fCM=";
};
build-system = [
setuptools
];
dependencies = [
aiohttp
requests
];
pythonImportsCheck = [ "citybikes" ];
nativeCheckInputs = [
pytest-aiohttp
pytest-asyncio
pytestCheckHook
responses
];
meta = {
description = "Client interface for the Citybikes API";
homepage = "https://github.com/eskerda/python-citybikes";
license = lib.licenses.mit;
maintainers = [ lib.maintainers.dotlambda ];
};
}
+2
View File
@@ -14875,6 +14875,8 @@ self: super: with self; {
python-cinderclient = callPackage ../development/python-modules/python-cinderclient { };
python-citybikes = callPackage ../development/python-modules/python-citybikes { };
python-clementine-remote = callPackage ../development/python-modules/python-clementine-remote { };
python-codon-tables = callPackage ../development/python-modules/python-codon-tables { };