17 buildPythonPackage rec {
22 disabled = pythonOlder "3.11";
24 src = fetchFromGitHub {
26 repo = "python-vehicle";
27 rev = "refs/tags/v${version}";
28 hash = "sha256-MPK5Aim/kGXLMOapttkp5ygl8gIlHv0675sBBf6kyAA=";
32 # Upstream doesn't set a version for the pyproject.toml
33 substituteInPlace pyproject.toml \
34 --replace "0.0.0" "${version}" \
38 nativeBuildInputs = [ poetry-core ];
40 propagatedBuildInputs = [
54 pythonImportsCheck = [ "vehicle" ];
57 description = "Python client providing RDW vehicle information";
58 homepage = "https://github.com/frenck/python-vehicle";
59 changelog = "https://github.com/frenck/python-vehicle/releases/tag/v${version}";
60 license = licenses.mit;
61 maintainers = with maintainers; [ fab ];