Merge pull request #238259 from marsam/update-nvchecker

python310Packages.nvchecker: 2.11 -> 2.12
This commit is contained in:
Mario Rodas 2023-06-18 23:14:27 -05:00 committed by GitHub
commit 1f314b9b98
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -20,7 +20,7 @@
buildPythonPackage rec {
pname = "nvchecker";
version = "2.11";
version = "2.12";
format = "pyproject";
disabled = pythonOlder "3.7";
@ -29,7 +29,7 @@ buildPythonPackage rec {
owner = "lilydjwg";
repo = pname;
rev = "v${version}";
hash = "sha256-b/EGn26gTpnYuy2h6shnJI1dRwhl41eKJHzDJoFG1YI=";
hash = "sha256-6mhVDC2jpIIOZeoKz4AxxU7jj8dqPVBKRWupbuY/T7E=";
};
nativeBuildInputs = [
@ -44,8 +44,9 @@ buildPythonPackage rec {
pycurl
setuptools
structlog
tomli
tornado
] ++ lib.optionals (pythonOlder "3.11") [
tomli
];
nativeCheckInputs = [
@ -73,8 +74,9 @@ buildPythonPackage rec {
];
meta = with lib; {
homepage = "https://github.com/lilydjwg/nvchecker";
description = "New version checker for software";
homepage = "https://github.com/lilydjwg/nvchecker";
changelog = "https://github.com/lilydjwg/nvchecker/releases/tag/v${version}";
license = licenses.mit;
maintainers = with maintainers; [ marsam ];
};