nixpkgs/pkgs/development/python-modules/peaqevcore/default.nix
2023-02-27 15:45:05 +01:00

38 lines
804 B
Nix

{ lib
, buildPythonPackage
, fetchPypi
, pythonOlder
}:
buildPythonPackage rec {
pname = "peaqevcore";
version = "12.2.1";
format = "setuptools";
disabled = pythonOlder "3.7";
src = fetchPypi {
inherit pname version;
hash = "sha256-WOuKGVrNZzvY7F0Mvj3MjSdTu47c5Y11ySe1qorzlWE=";
};
postPatch = ''
substituteInPlace setup.py \
--replace "pytest" ""
'';
# 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";
license = with licenses; [ mit ];
maintainers = with maintainers; [ fab ];
};
}