depot/third_party/nixpkgs/pkgs/development/python-modules/pycarwings2/default.nix
Default email fa5436e0a7 Project import generated by Copybara.
GitOrigin-RevId: e8057b67ebf307f01bdcc8fba94d94f75039d1f6
2024-06-05 17:53:02 +02:00

57 lines
1.2 KiB
Nix

{
lib,
buildPythonPackage,
fetchFromGitHub,
pytestCheckHook,
pythonOlder,
pyyaml,
iso8601,
requests,
pycryptodome,
}:
buildPythonPackage rec {
pname = "pycarwings2";
version = "2.14";
format = "setuptools";
disabled = pythonOlder "3.5";
src = fetchFromGitHub {
owner = "filcole";
repo = pname;
rev = "v${version}";
hash = "sha256-kqj/NZXqgPUsOnnzMPmIlICHek7RBxksmL3reNBK+bo=";
};
propagatedBuildInputs = [
pyyaml
iso8601
requests
pycryptodome
];
nativeCheckInputs = [ pytestCheckHook ];
postPatch = ''
substituteInPlace setup.py \
--replace "'pytest-runner'" ""
substituteInPlace setup.cfg \
--replace " --flake8 --cov=pycarwings2 --cache-clear --ignore=venv --verbose" ""
'';
disabledTests = [
# Test requires network access
"test_bad_password"
];
pythonImportsCheck = [ "pycarwings2" ];
meta = with lib; {
description = "Python library for interacting with the NissanConnect EV";
homepage = "https://github.com/filcole/pycarwings2";
changelog = "https://github.com/filcole/pycarwings2/releases/tag/v${version}";
license = licenses.asl20;
maintainers = with maintainers; [ fab ];
};
}