mirror of
https://github.com/NixOS/nixpkgs.git
synced 2025-01-22 04:45:39 +00:00
python311Packages.pylitterbot: 2023.4.0 -> 2023.4.2
Diff: https://github.com/natekspencer/pylitterbot/compare/refs/tags/v2023.4.0...v2023.4.2 Changelog: https://github.com/natekspencer/pylitterbot/releases/tag/v2023.4.2 Co-Authored-By: Martin Weinelt <hexa@darmstadt.ccc.de>
This commit is contained in:
parent
9239f21e37
commit
35e5b06a44
@ -4,6 +4,7 @@
|
|||||||
, buildPythonPackage
|
, buildPythonPackage
|
||||||
, fetchFromGitHub
|
, fetchFromGitHub
|
||||||
, poetry-core
|
, poetry-core
|
||||||
|
, poetry-dynamic-versioning
|
||||||
, pyjwt
|
, pyjwt
|
||||||
, pytest-aiohttp
|
, pytest-aiohttp
|
||||||
, pytest-freezegun
|
, pytest-freezegun
|
||||||
@ -14,7 +15,7 @@
|
|||||||
|
|
||||||
buildPythonPackage rec {
|
buildPythonPackage rec {
|
||||||
pname = "pylitterbot";
|
pname = "pylitterbot";
|
||||||
version = "2023.4.0";
|
version = "2023.4.2";
|
||||||
format = "pyproject";
|
format = "pyproject";
|
||||||
|
|
||||||
disabled = pythonOlder "3.9";
|
disabled = pythonOlder "3.9";
|
||||||
@ -22,12 +23,13 @@ buildPythonPackage rec {
|
|||||||
src = fetchFromGitHub {
|
src = fetchFromGitHub {
|
||||||
owner = "natekspencer";
|
owner = "natekspencer";
|
||||||
repo = pname;
|
repo = pname;
|
||||||
rev = "refs/tags/${version}";
|
rev = "refs/tags/v${version}";
|
||||||
hash = "sha256-nF6njY2qNoHW2ZGNDHNeTBTjSBbitJxitPgyayLaqSE=";
|
hash = "sha256-zB/LJGEPJ3uZEoVQiLQUCWqLo9YLXN6vge3RhIwA5D4=";
|
||||||
};
|
};
|
||||||
|
|
||||||
nativeBuildInputs = [
|
nativeBuildInputs = [
|
||||||
poetry-core
|
poetry-core
|
||||||
|
poetry-dynamic-versioning
|
||||||
];
|
];
|
||||||
|
|
||||||
propagatedBuildInputs = [
|
propagatedBuildInputs = [
|
||||||
@ -50,7 +52,7 @@ buildPythonPackage rec {
|
|||||||
meta = with lib; {
|
meta = with lib; {
|
||||||
description = "Modulefor controlling a Litter-Robot";
|
description = "Modulefor controlling a Litter-Robot";
|
||||||
homepage = "https://github.com/natekspencer/pylitterbot";
|
homepage = "https://github.com/natekspencer/pylitterbot";
|
||||||
changelog = "https://github.com/natekspencer/pylitterbot/releases/tag/${version}";
|
changelog = "https://github.com/natekspencer/pylitterbot/releases/tag/v${version}";
|
||||||
license = with licenses; [ mit ];
|
license = with licenses; [ mit ];
|
||||||
maintainers = with maintainers; [ fab ];
|
maintainers = with maintainers; [ fab ];
|
||||||
};
|
};
|
||||||
|
Loading…
Reference in New Issue
Block a user