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

63 lines
1.1 KiB
Nix
Raw Normal View History

{ lib
, aiohttp
, aioresponses
, buildPythonPackage
, fetchFromGitHub
, poetry-core
, pyjwt
, pytest-aiohttp
, pytest-freezegun
, pytestCheckHook
, pythonOlder
, deepdiff
}:
buildPythonPackage rec {
pname = "pylitterbot";
version = "2022.11.0";
format = "pyproject";
disabled = pythonOlder "3.9";
src = fetchFromGitHub {
owner = "natekspencer";
repo = pname;
rev = "refs/tags/${version}";
hash = "sha256-GEKLkFzQV8xI3c8061fO1p66WKj3eDXmx7VaRYDu7kw=";
};
nativeBuildInputs = [
poetry-core
];
propagatedBuildInputs = [
aiohttp
deepdiff
pyjwt
];
checkInputs = [
aioresponses
pytest-aiohttp
pytest-freezegun
pytestCheckHook
];
postPatch = ''
# https://github.com/natekspencer/pylitterbot/issues/73
substituteInPlace pyproject.toml \
--replace 'deepdiff = "^5.8.1"' 'deepdiff = ">=5.8.1"'
'';
pythonImportsCheck = [
"pylitterbot"
];
meta = with lib; {
description = "Modulefor controlling a Litter-Robot";
homepage = "https://github.com/natekspencer/pylitterbot";
license = with licenses; [ mit ];
maintainers = with maintainers; [ fab ];
};
}