Merge pull request #290566 from r-ryantm/auto-update/python312Packages.peaqevcore

python312Packages.peaqevcore: 19.6.10 -> 19.7.0
This commit is contained in:
Fabian Affolter 2024-02-22 09:29:09 +01:00 committed by GitHub
commit 1a14e86745
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -2,24 +2,29 @@
, buildPythonPackage
, fetchPypi
, pythonOlder
, setuptools
}:
buildPythonPackage rec {
pname = "peaqevcore";
version = "19.6.10";
format = "setuptools";
version = "19.7.0";
pyproject = true;
disabled = pythonOlder "3.7";
src = fetchPypi {
inherit pname version;
hash = "sha256-iaZrPgGD7BM7H+i2R9qQBM55KcFu/Rqyho3AxXw15N0=";
hash = "sha256-M5kUNZyQH5ibP4PvnWkp+LdOQXM6VfHGX3csXiPPHLg=";
};
postPatch = ''
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;