Merge pull request #305452 from r-ryantm/auto-update/python312Packages.camel-converter

python312Packages.camel-converter: 3.1.1 -> 3.1.2

authored by Fabian Affolter and committed by GitHub cfbc0b71 86f706f3

+15 -22
+15 -22
pkgs/development/python-modules/camel-converter/default.nix
··· 1 - { lib 2 - , buildPythonPackage 3 - , fetchFromGitHub 4 - , poetry-core 5 - , pydantic 6 - , pytestCheckHook 7 - , pythonOlder 1 + { 2 + lib, 3 + buildPythonPackage, 4 + fetchFromGitHub, 5 + poetry-core, 6 + pydantic, 7 + pytestCheckHook, 8 + pythonOlder, 8 9 }: 9 10 10 11 buildPythonPackage rec { 11 12 pname = "camel-converter"; 12 - version = "3.1.1"; 13 + version = "3.1.2"; 13 14 pyproject = true; 14 15 15 16 disabled = pythonOlder "3.8"; ··· 18 19 owner = "sanders41"; 19 20 repo = "camel-converter"; 20 21 rev = "refs/tags/v${version}"; 21 - hash = "sha256-xrdk5Y3H8KlQaGtJYdJNHq16Qfos2p+93uIAfIl098c="; 22 + hash = "sha256-CJbflRI3wfUmPoVuLwZDYcobESmySvnS99PdpSDhDLk="; 22 23 }; 23 24 24 25 postPatch = '' 25 26 substituteInPlace pyproject.toml \ 26 - --replace "--cov=camel_converter --cov-report term-missing --no-cov-on-fail" "" 27 + --replace-fail "--cov=camel_converter --cov-report term-missing --no-cov-on-fail" "" 27 28 ''; 28 29 29 - nativeBuildInputs = [ 30 - poetry-core 31 - ]; 30 + build-system = [ poetry-core ]; 32 31 33 32 passthru.optional-dependencies = { 34 - pydantic = [ 35 - pydantic 36 - ]; 33 + pydantic = [ pydantic ]; 37 34 }; 38 35 39 - nativeCheckInputs = [ 40 - pytestCheckHook 41 - ] ++ passthru.optional-dependencies.pydantic; 36 + nativeCheckInputs = [ pytestCheckHook ] ++ passthru.optional-dependencies.pydantic; 42 37 43 - pythonImportsCheck = [ 44 - "camel_converter" 45 - ]; 38 + pythonImportsCheck = [ "camel_converter" ]; 46 39 47 40 disabledTests = [ 48 41 # AttributeError: 'Test' object has no attribute 'model_dump'