Merge pull request #280972 from fabaff/aiolifx-bump

python311Packages.aiolifx: 1.0.0 -> 1.0.1, python311Packages.aiolifx-themes: 0.4.11 -> 0.4.12
This commit is contained in:
Fabian Affolter 2024-01-14 23:57:13 +01:00 committed by GitHub
commit 693437660a
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
3 changed files with 7 additions and 12 deletions

View file

@ -12,7 +12,7 @@
buildPythonPackage rec { buildPythonPackage rec {
pname = "aiolifx-themes"; pname = "aiolifx-themes";
version = "0.4.11"; version = "0.4.12";
pyproject = true; pyproject = true;
disabled = pythonOlder "3.9"; disabled = pythonOlder "3.9";
@ -21,7 +21,7 @@ buildPythonPackage rec {
owner = "Djelibeybi"; owner = "Djelibeybi";
repo = "aiolifx-themes"; repo = "aiolifx-themes";
rev = "refs/tags/v${version}"; rev = "refs/tags/v${version}";
hash = "sha256-pldmkdkDI6RFMcBOF1MtQBddOo+uF23CMHPztEV+kf0="; hash = "sha256-dV8xLZQaWiCSqXsY45vme4IMPT6UDmeAOkxEEU5UIW4=";
}; };
prePatch = '' prePatch = ''

View file

@ -12,14 +12,14 @@
buildPythonPackage rec { buildPythonPackage rec {
pname = "aiolifx"; pname = "aiolifx";
version = "1.0.0"; version = "1.0.1";
pyproject = true; pyproject = true;
disabled = pythonOlder "3.7"; disabled = pythonOlder "3.7";
src = fetchPypi { src = fetchPypi {
inherit pname version; inherit pname version;
hash = "sha256-2lWC2eTYh/YX0Pn3W11uVqqT2ycsa993siiDR2BV4qU="; hash = "sha256-r42M7aqKKLdGgRaCym44M1nvu0vTGK7ricBp/AsbFRk=";
}; };
nativeBuildInputs = [ nativeBuildInputs = [

View file

@ -1,23 +1,19 @@
{ lib { lib
, buildPythonPackage , buildPythonPackage
, fetchFromGitHub , fetchFromGitHub
, furo
, myst-parser
, pfzy , pfzy
, poetry-core , poetry-core
, prompt-toolkit , prompt-toolkit
, pytestCheckHook , pytestCheckHook
, pythonOlder , pythonOlder
, sphinx
, sphinx-autobuild
, sphinx-copybutton
}: }:
buildPythonPackage rec { buildPythonPackage rec {
pname = "inquirerpy"; pname = "inquirerpy";
version = "0.3.4"; version = "0.3.4";
format = "pyproject"; pyproject = true;
disabled = pythonOlder "3.7";
src = fetchFromGitHub { src = fetchFromGitHub {
owner = "kazhala"; owner = "kazhala";
@ -51,11 +47,10 @@ buildPythonPackage rec {
"tests/base/test_list.py" "tests/base/test_list.py"
]; ];
meta = with lib; { meta = with lib; {
description = "Python port of Inquirer.js"; description = "Python port of Inquirer.js";
homepage = "https://github.com/kazhala/InquirerPy"; homepage = "https://github.com/kazhala/InquirerPy";
changelog = "https://github.com/kazhala/InquirerPy/blob/${src.rev}/CHANGELOG.md"; changelog = "https://github.com/kazhala/InquirerPy/blob/${version}/CHANGELOG.md";
license = licenses.mit; license = licenses.mit;
maintainers = with maintainers; [ fab ]; maintainers = with maintainers; [ fab ];
}; };