mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-25 08:23:09 +00:00
41 lines
911 B
Nix
41 lines
911 B
Nix
{
|
|
lib,
|
|
buildPythonPackage,
|
|
fetchPypi,
|
|
pythonOlder,
|
|
setuptools,
|
|
}:
|
|
|
|
buildPythonPackage rec {
|
|
pname = "peaqevcore";
|
|
version = "19.11.2";
|
|
pyproject = true;
|
|
|
|
disabled = pythonOlder "3.7";
|
|
|
|
src = fetchPypi {
|
|
inherit pname version;
|
|
hash = "sha256-DQdmZ51jAG+JZkZal17+NIaQ+0lrMS7tqMSZj47tNWw=";
|
|
};
|
|
|
|
postPatch = ''
|
|
sed -i "/extras_require/d" setup.py
|
|
'';
|
|
|
|
build-system = [ setuptools ];
|
|
|
|
# Tests are not shipped and source is not tagged
|
|
# https://github.com/elden1337/peaqev-core/issues/4
|
|
doCheck = false;
|
|
|
|
pythonImportsCheck = [ "peaqevcore" ];
|
|
|
|
meta = with lib; {
|
|
description = "Library for interacting with Peaqev car charging";
|
|
homepage = "https://github.com/elden1337/peaqev-core";
|
|
changelog = "https://github.com/elden1337/peaqev-core/releases/tag/${version}";
|
|
license = with licenses; [ mit ];
|
|
maintainers = with maintainers; [ fab ];
|
|
};
|
|
}
|