18 buildPythonPackage rec {
23 disabled = pythonOlder "3.11";
25 src = fetchFromGitHub {
27 repo = "python-vehicle";
29 hash = "sha256-MPK5Aim/kGXLMOapttkp5ygl8gIlHv0675sBBf6kyAA=";
33 # Upstream doesn't set a version for the pyproject.toml
34 substituteInPlace pyproject.toml \
35 --replace "0.0.0" "${version}" \
38 build-system = [ poetry-core ];
55 pythonImportsCheck = [ "vehicle" ];
58 description = "Python client providing RDW vehicle information";
59 homepage = "https://github.com/frenck/python-vehicle";
60 changelog = "https://github.com/frenck/python-vehicle/releases/tag/v${version}";
61 license = licenses.mit;
62 maintainers = with maintainers; [ fab ];