Merge pull request #312810 from r-ryantm/auto-update/python311Packages.character-encoding-utils

python311Packages.character-encoding-utils: 0.0.7 -> 0.0.8

authored by Nick Cao and committed by GitHub a2d05c02 60035daf

+15 -17
+15 -17
pkgs/development/python-modules/character-encoding-utils/default.nix
··· 1 - { lib 2 - , buildPythonPackage 3 - , fetchPypi 4 - , pytestCheckHook 5 - , pythonOlder 6 - , nix-update-script 7 - , hatch-vcs 8 - , hatchling 9 }: 10 11 buildPythonPackage rec { 12 pname = "character-encoding-utils"; 13 - version = "0.0.7"; 14 15 disabled = pythonOlder "3.11"; 16 17 src = fetchPypi { 18 pname = "character_encoding_utils"; 19 inherit version; 20 - hash = "sha256-cUggyNz5xphDF+7dSrx3vr3v3R8ISryHj9accMJfDbg="; 21 }; 22 23 - format = "pyproject"; 24 - 25 - nativeBuildInputs = [ 26 hatch-vcs 27 hatchling 28 ]; 29 30 - checkInputs = [ pytestCheckHook ]; 31 32 - passthru.updateScript = nix-update-script { }; 33 34 meta = { 35 - homepage = "https://github.com/TakWolf/character-encoding-utils"; 36 description = "Some character encoding utils"; 37 - platforms = lib.platforms.all; 38 license = lib.licenses.mit; 39 maintainers = with lib.maintainers; [ h7x4 ]; 40 };
··· 1 + { 2 + lib, 3 + buildPythonPackage, 4 + fetchPypi, 5 + hatch-vcs, 6 + hatchling, 7 + pytestCheckHook, 8 + pythonOlder, 9 }: 10 11 buildPythonPackage rec { 12 pname = "character-encoding-utils"; 13 + version = "0.0.8"; 14 + pyproject = true; 15 16 disabled = pythonOlder "3.11"; 17 18 src = fetchPypi { 19 pname = "character_encoding_utils"; 20 inherit version; 21 + hash = "sha256-UXX4L/x7fP37ZEFDCPc0KRNyx47xvwY0Jz+lfxzUulg="; 22 }; 23 24 + build-system = [ 25 hatch-vcs 26 hatchling 27 ]; 28 29 + nativeCheckInputs = [ pytestCheckHook ]; 30 31 + pythonImportsCheck = [ "character_encoding_utils" ]; 32 33 meta = { 34 description = "Some character encoding utils"; 35 + homepage = "https://github.com/TakWolf/character-encoding-utils"; 36 license = lib.licenses.mit; 37 maintainers = with lib.maintainers; [ h7x4 ]; 38 };