Merge pull request #299226 from r-ryantm/auto-update/python312Packages.pyleri

python312Packages.pyleri: 1.4.2 -> 1.4.3
This commit is contained in:
Fabian Affolter 2024-03-28 12:14:47 +01:00 committed by GitHub
commit e0f80a057f
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
1 changed files with 8 additions and 3 deletions

View File

@ -3,12 +3,13 @@
, fetchFromGitHub
, pythonOlder
, unittestCheckHook
, setuptools
}:
buildPythonPackage rec {
pname = "pyleri";
version = "1.4.2";
format = "setuptools";
version = "1.4.3";
pyproject = true;
disabled = pythonOlder "3.7";
@ -16,9 +17,13 @@ buildPythonPackage rec {
owner = "cesbit";
repo = "pyleri";
rev = "refs/tags/${version}";
hash = "sha256-52Q2iTrXFNbDzXL0FM+Gypipvo5ciNqAtZa5sKOwQRc=";
hash = "sha256-4t+6wtYzJbmL0TB/OXr89uZ2s8DeGlUdWwHd4YPsCW0=";
};
build-system = [
setuptools
];
nativeCheckInputs = [
unittestCheckHook
];