Merge pull request #222876 from fabaff/vehicle-bump

python310Packages.vehicle: 0.4.0 -> 1.0.0

authored by

Fabian Affolter and committed by
GitHub
9f7bf6dc fae114b6

+5 -4
+5 -4
pkgs/development/python-modules/vehicle/default.nix
··· 13 13 14 14 buildPythonPackage rec { 15 15 pname = "vehicle"; 16 - version = "0.4.0"; 16 + version = "1.0.0"; 17 17 format = "pyproject"; 18 18 19 - disabled = pythonOlder "3.8"; 19 + disabled = pythonOlder "3.10"; 20 20 21 21 src = fetchFromGitHub { 22 22 owner = "frenck"; 23 23 repo = "python-vehicle"; 24 - rev = "v${version}"; 25 - hash = "sha256-dvSdYrONUEe+bdZ+9nALrOQ6gJwq9e1dLvuq08xP5tQ="; 24 + rev = "refs/tags/v${version}"; 25 + hash = "sha256-7WW/gEtS4KLcAujQ+pypDpk9VaacMWj/RP7OpLxUrDs="; 26 26 }; 27 27 28 28 nativeBuildInputs = [ ··· 55 55 meta = with lib; { 56 56 description = "Python client providing RDW vehicle information"; 57 57 homepage = "https://github.com/frenck/python-vehicle"; 58 + changelog = "https://github.com/frenck/python-vehicle/releases/tag/v${version}"; 58 59 license = licenses.mit; 59 60 maintainers = with maintainers; [ fab ]; 60 61 };