python312Packages.pynobo: refactor

This commit is contained in:
Fabian Affolter 2024-03-28 10:56:34 +01:00 committed by GitHub
parent f93c82f96e
commit 63bd7f0d71
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
1 changed files with 7 additions and 2 deletions

View File

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