python312Packages.editorconfig: 0.12.4 -> 0.17.0 (#369288)

authored by Nick Cao and committed by GitHub 9ee7a88f 860e5bd8

+3 -3
+3 -3
pkgs/development/python-modules/editorconfig/default.nix
··· 8 8 9 9 buildPythonPackage rec { 10 10 pname = "editorconfig"; 11 - version = "0.12.4"; 11 + version = "0.17.0"; 12 12 pyproject = true; 13 13 14 14 src = fetchFromGitHub { 15 15 owner = "editorconfig"; 16 16 repo = "editorconfig-core-py"; 17 17 rev = "v${version}"; 18 - hash = "sha256-+m674bLj6xs7MWU+8BMixEwy7/TjyES0lvCLLogTDHQ="; 18 + hash = "sha256-vYuXW+Yb0GXZAwaarV4WBIJtS31+EleiddU9ibBn/hs="; 19 19 fetchSubmodules = true; 20 20 }; 21 21 22 - nativeBuildInputs = [ setuptools ]; 22 + build-system = [ setuptools ]; 23 23 24 24 nativeCheckInputs = [ cmake ]; 25 25