Merge pull request #299706 from r-ryantm/auto-update/python312Packages.pynobo

python312Packages.pynobo: 1.7.0 -> 1.8.0
This commit is contained in:
Fabian Affolter 2024-03-28 12:10:59 +01:00 committed by GitHub
commit 655dbe93f0
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
1 changed files with 9 additions and 4 deletions

View File

@ -2,22 +2,27 @@
, buildPythonPackage
, fetchFromGitHub
, pythonOlder
, setuptools
}:
buildPythonPackage rec {
pname = "pynobo";
version = "1.7.0";
format = "setuptools";
version = "1.8.0";
pyproject = true;
disabled = pythonOlder "3.7";
src = fetchFromGitHub {
owner = "echoromeo";
repo = pname;
repo = "pynobo";
rev = "refs/tags/v${version}";
hash = "sha256-LJS4NJM+f+j53YzH8LradBDzHAsOprd4F7nH1cfC3B0=";
hash = "sha256-Hfyf7XGleDWTKKWNlItcBFuiS3UEwsYed7v5FPRdC0w=";
};
build-system = [
setuptools
];
# Project has no tests
doCheck = false;