Merge pull request #294268 from fabaff/aionotion-bump

python311Packages.aionotion: 2024.02.2 -> 2024.03.0
This commit is contained in:
Fabian Affolter 2024-03-08 22:11:34 +01:00 committed by GitHub
commit b1b24fdc27
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -19,16 +19,16 @@
buildPythonPackage rec { buildPythonPackage rec {
pname = "aionotion"; pname = "aionotion";
version = "2024.02.2"; version = "2024.03.0";
format = "pyproject"; pyproject = true;
disabled = pythonOlder "3.7"; disabled = pythonOlder "3.7";
src = fetchFromGitHub { src = fetchFromGitHub {
owner = "bachya"; owner = "bachya";
repo = pname; repo = "aionotion";
rev = "refs/tags/${version}"; rev = "refs/tags/${version}";
hash = "sha256-xehHOB4iUMT1kKEK4jQzaj7hH9fmiY7mZxGC3CLnpAs="; hash = "sha256-BsbfLb5wCVxR8v2U2Zzt7LMl7XJcZWfVjZN47VDkhFc=";
}; };
nativeBuildInputs = [ nativeBuildInputs = [
@ -66,7 +66,7 @@ buildPythonPackage rec {
meta = with lib; { meta = with lib; {
description = "Python library for Notion Home Monitoring"; description = "Python library for Notion Home Monitoring";
homepage = "https://github.com/bachya/aionotion"; homepage = "https://github.com/bachya/aionotion";
changelog = "https://github.com/bachya/aionotion/releases/tag/${src.rev}"; changelog = "https://github.com/bachya/aionotion/releases/tag/${version}";
license = with licenses; [ mit ]; license = with licenses; [ mit ];
maintainers = with maintainers; [ fab ]; maintainers = with maintainers; [ fab ];
}; };