nixpkgs/pkgs/development/python-modules/pylitterbot/default.nix

60 lines
1.1 KiB
Nix

{ lib
, aiohttp
, aioresponses
, buildPythonPackage
, fetchFromGitHub
, poetry-core
, poetry-dynamic-versioning
, pyjwt
, pytest-aiohttp
, pytest-freezegun
, pytestCheckHook
, pythonOlder
, deepdiff
}:
buildPythonPackage rec {
pname = "pylitterbot";
version = "2023.4.11";
format = "pyproject";
disabled = pythonOlder "3.9";
src = fetchFromGitHub {
owner = "natekspencer";
repo = pname;
rev = "refs/tags/v${version}";
hash = "sha256-OTyQgcGGNktCgYJN33SZn7La7ec+gwR/yVDuH7kcEh4=";
};
nativeBuildInputs = [
poetry-core
poetry-dynamic-versioning
];
propagatedBuildInputs = [
aiohttp
deepdiff
pyjwt
];
nativeCheckInputs = [
aioresponses
pytest-aiohttp
pytest-freezegun
pytestCheckHook
];
pythonImportsCheck = [
"pylitterbot"
];
meta = with lib; {
description = "Modulefor controlling a Litter-Robot";
homepage = "https://github.com/natekspencer/pylitterbot";
changelog = "https://github.com/natekspencer/pylitterbot/releases/tag/v${version}";
license = with licenses; [ mit ];
maintainers = with maintainers; [ fab ];
};
}