Merge pull request #301774 from fabaff/pylitterbot-bump
python312Packages.pylitterbot: 2023.4.9 -> 2023.4.10
This commit is contained in:
commit
8afe335649
1 changed files with 19 additions and 20 deletions
|
@ -1,38 +1,39 @@
|
||||||
{ lib
|
{
|
||||||
, aiohttp
|
lib,
|
||||||
, aioresponses
|
aiohttp,
|
||||||
, buildPythonPackage
|
aioresponses,
|
||||||
, fetchFromGitHub
|
buildPythonPackage,
|
||||||
, poetry-core
|
fetchFromGitHub,
|
||||||
, poetry-dynamic-versioning
|
poetry-core,
|
||||||
, pyjwt
|
poetry-dynamic-versioning,
|
||||||
, pytest-aiohttp
|
pyjwt,
|
||||||
, pytest-freezegun
|
pytest-aiohttp,
|
||||||
, pytestCheckHook
|
pytest-freezegun,
|
||||||
, pythonOlder
|
pytestCheckHook,
|
||||||
, deepdiff
|
pythonOlder,
|
||||||
|
deepdiff,
|
||||||
}:
|
}:
|
||||||
|
|
||||||
buildPythonPackage rec {
|
buildPythonPackage rec {
|
||||||
pname = "pylitterbot";
|
pname = "pylitterbot";
|
||||||
version = "2023.4.11";
|
version = "2023.4.11";
|
||||||
format = "pyproject";
|
pyproject = true;
|
||||||
|
|
||||||
disabled = pythonOlder "3.9";
|
disabled = pythonOlder "3.9";
|
||||||
|
|
||||||
src = fetchFromGitHub {
|
src = fetchFromGitHub {
|
||||||
owner = "natekspencer";
|
owner = "natekspencer";
|
||||||
repo = pname;
|
repo = "pylitterbot";
|
||||||
rev = "refs/tags/v${version}";
|
rev = "refs/tags/v${version}";
|
||||||
hash = "sha256-OTyQgcGGNktCgYJN33SZn7La7ec+gwR/yVDuH7kcEh4=";
|
hash = "sha256-OTyQgcGGNktCgYJN33SZn7La7ec+gwR/yVDuH7kcEh4=";
|
||||||
};
|
};
|
||||||
|
|
||||||
nativeBuildInputs = [
|
build-system = [
|
||||||
poetry-core
|
poetry-core
|
||||||
poetry-dynamic-versioning
|
poetry-dynamic-versioning
|
||||||
];
|
];
|
||||||
|
|
||||||
propagatedBuildInputs = [
|
dependencies = [
|
||||||
aiohttp
|
aiohttp
|
||||||
deepdiff
|
deepdiff
|
||||||
pyjwt
|
pyjwt
|
||||||
|
@ -45,9 +46,7 @@ buildPythonPackage rec {
|
||||||
pytestCheckHook
|
pytestCheckHook
|
||||||
];
|
];
|
||||||
|
|
||||||
pythonImportsCheck = [
|
pythonImportsCheck = [ "pylitterbot" ];
|
||||||
"pylitterbot"
|
|
||||||
];
|
|
||||||
|
|
||||||
meta = with lib; {
|
meta = with lib; {
|
||||||
description = "Modulefor controlling a Litter-Robot";
|
description = "Modulefor controlling a Litter-Robot";
|
||||||
|
|
Loading…
Reference in a new issue