0
0
Fork 0
mirror of https://github.com/NixOS/nixpkgs.git synced 2025-07-13 13:40:28 +03:00

python311Packages.python-technove: init at 1.2.2

Python library to interact with TechnoVE local device API

https://github.com/Moustachauve/pytechnove
This commit is contained in:
Fabian Affolter 2024-02-14 09:41:46 +01:00
parent b141f3467b
commit e4ae4e18a8
2 changed files with 66 additions and 0 deletions

View file

@ -0,0 +1,64 @@
{ lib
, aiohttp
, aresponses
, awesomeversion
, backoff
, buildPythonPackage
, cachetools
, fetchFromGitHub
, poetry-core
, pytest-asyncio
, pytestCheckHook
, pythonOlder
, yarl
}:
buildPythonPackage rec {
pname = "python-technove";
version = "1.2.2";
pyproject = true;
disabled = pythonOlder "3.11";
src = fetchFromGitHub {
owner = "Moustachauve";
repo = "pytechnove";
rev = "refs/tags/v${version}";
hash = "sha256-kc5jR0IM2OagvmtqhicnBbrwrdk3E/iJhRIgUtKoirI=";
};
postPatch = ''
substituteInPlace pyproject.toml \
--replace-fail "--cov" ""
'';
nativeBuildInputs = [
poetry-core
];
propagatedBuildInputs = [
aiohttp
awesomeversion
backoff
cachetools
yarl
];
nativeCheckInputs = [
aresponses
pytest-asyncio
pytestCheckHook
];
pythonImportsCheck = [
"technove"
];
meta = with lib; {
description = "Python library to interact with TechnoVE local device API";
homepage = "https://github.com/Moustachauve/pytechnove";
changelog = "https://github.com/Moustachauve/pytechnove/releases/tag/v${version}";
license = licenses.mit;
maintainers = with maintainers; [ fab ];
};
}

View file

@ -12000,6 +12000,8 @@ self: super: with self; {
python-stdnum = callPackage ../development/python-modules/python-stdnum { };
python-technove = callPackage ../development/python-modules/python-technove { };
python-telegram = callPackage ../development/python-modules/python-telegram { };
python-telegram-bot = callPackage ../development/python-modules/python-telegram-bot { };