mirror of
https://github.com/NixOS/nixpkgs.git
synced 2025-01-27 23:33:30 +00:00
Merge pull request #301649 from fabaff/peaqevcore-bump
python312Packages.peaqevcore: 19.7.12 -> 19.7.14
This commit is contained in:
commit
e636feeb6e
@ -1,37 +1,34 @@
|
||||
{ lib
|
||||
, buildPythonPackage
|
||||
, fetchPypi
|
||||
, pythonOlder
|
||||
, setuptools
|
||||
{
|
||||
lib,
|
||||
buildPythonPackage,
|
||||
fetchPypi,
|
||||
pythonOlder,
|
||||
setuptools,
|
||||
}:
|
||||
|
||||
buildPythonPackage rec {
|
||||
pname = "peaqevcore";
|
||||
version = "19.7.12";
|
||||
version = "19.7.14";
|
||||
pyproject = true;
|
||||
|
||||
disabled = pythonOlder "3.7";
|
||||
|
||||
src = fetchPypi {
|
||||
inherit pname version;
|
||||
hash = "sha256-/oo24hOH2aIXZH0CwmgTNIvA2MJWvOR084rZEOdldGM=";
|
||||
hash = "sha256-yUGvY5sjt2eXWpu/wSWjxpDpwBEJoZg3nI28QbdfiII=";
|
||||
};
|
||||
|
||||
postPatch = ''
|
||||
sed -i "/extras_require/d" setup.py
|
||||
'';
|
||||
|
||||
build-system = [
|
||||
setuptools
|
||||
];
|
||||
build-system = [ setuptools ];
|
||||
|
||||
# Tests are not shipped and source is not tagged
|
||||
# https://github.com/elden1337/peaqev-core/issues/4
|
||||
doCheck = false;
|
||||
|
||||
pythonImportsCheck = [
|
||||
"peaqevcore"
|
||||
];
|
||||
pythonImportsCheck = [ "peaqevcore" ];
|
||||
|
||||
meta = with lib; {
|
||||
description = "Library for interacting with Peaqev car charging";
|
||||
|
Loading…
Reference in New Issue
Block a user