lol

Merge pull request #308535 from fabaff/pywaze-bump

python312Packages.pywaze: 1.0.0 -> 1.0.1

authored by

Fabian Affolter and committed by
GitHub
055ed44f 4c704748

+17 -22
+17 -22
pkgs/development/python-modules/pywaze/default.nix
··· 1 - { lib 2 - , buildPythonPackage 3 - , fetchFromGitHub 4 - , hatchling 5 - , httpx 6 - , pytest-asyncio 7 - , pytestCheckHook 8 - , pythonOlder 9 - , respx 1 + { 2 + lib, 3 + buildPythonPackage, 4 + fetchFromGitHub, 5 + hatchling, 6 + httpx, 7 + pytest-asyncio, 8 + pytestCheckHook, 9 + pythonOlder, 10 + respx, 10 11 }: 11 12 12 13 buildPythonPackage rec { 13 14 pname = "pywaze"; 14 - version = "1.0.0"; 15 - format = "pyproject"; 15 + version = "1.0.1"; 16 + pyproject = true; 16 17 17 18 disabled = pythonOlder "3.8"; 18 19 ··· 20 21 owner = "eifinger"; 21 22 repo = "pywaze"; 22 23 rev = "refs/tags/v${version}"; 23 - hash = "sha256-n5W8TdZZJmT7SECXE8k6WK2lmCcucA6eLm+LZpojERo="; 24 + hash = "sha256-sWI9kUR0SSqE97an/YfvhQqmrK+OEWXRzG4MBYyp8Jg="; 24 25 }; 25 26 26 27 postPatch = '' 27 28 substituteInPlace pyproject.toml \ 28 - --replace "--cov --cov-report term-missing --cov=src/pywaze " "" 29 + --replace-fail "--cov --cov-report term-missing --cov=src/pywaze " "" 29 30 ''; 30 31 31 - nativeBuildInputs = [ 32 - hatchling 33 - ]; 32 + build-system = [ hatchling ]; 34 33 35 - propagatedBuildInputs = [ 36 - httpx 37 - ]; 34 + dependencies = [ httpx ]; 38 35 39 36 nativeCheckInputs = [ 40 37 pytest-asyncio ··· 42 39 respx 43 40 ]; 44 41 45 - pythonImportsCheck = [ 46 - "pywaze" 47 - ]; 42 + pythonImportsCheck = [ "pywaze" ]; 48 43 49 44 meta = with lib; { 50 45 description = "Module for calculating WAZE routes and travel times";