python312Packages.peaqevcore: refactor

This commit is contained in:
Fabian Affolter 2024-02-22 08:50:39 +01:00 committed by GitHub
parent 94b9691715
commit c559445039
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -2,12 +2,13 @@
, buildPythonPackage
, fetchPypi
, pythonOlder
, setuptools
}:
buildPythonPackage rec {
pname = "peaqevcore";
version = "19.7.0";
format = "setuptools";
pyproject = true;
disabled = pythonOlder "3.7";
@ -20,6 +21,10 @@ buildPythonPackage rec {
sed -i "/extras_require/d" setup.py
'';
nativeBuildInputs = [
setuptools
];
# Tests are not shipped and source is not tagged
# https://github.com/elden1337/peaqev-core/issues/4
doCheck = false;