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