Skip to content

Commit

Permalink
Merge pull request #287427 from fabaff/pytechnove
Browse files Browse the repository at this point in the history
python311Packages.python-technove: init at 1.2.2
  • Loading branch information
fabaff authored Feb 16, 2024
2 parents 330ab32 + e4ae4e1 commit 5c31c4a
Show file tree
Hide file tree
Showing 2 changed files with 66 additions and 0 deletions.
64 changes: 64 additions & 0 deletions pkgs/development/python-modules/python-technove/default.nix
Original file line number Diff line number Diff line change
@@ -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 ];
};
}
2 changes: 2 additions & 0 deletions pkgs/top-level/python-packages.nix
Original file line number Diff line number Diff line change
Expand Up @@ -12028,6 +12028,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 { };
Expand Down

0 comments on commit 5c31c4a

Please sign in to comment.