nixpkgs mirror (for testing) github.com/NixOS/nixpkgs
nix

python312Packages.colorlog: 6.8.2 -> 6.9.0

https://github.com/borntyping/python-colorlog/compare/v6.8.2...v6.9.0

+3 -13
+3 -13
pkgs/development/python-modules/colorlog/default.nix
··· 2 2 lib, 3 3 buildPythonPackage, 4 4 fetchPypi, 5 - fetchpatch2, 6 5 setuptools, 7 6 pytestCheckHook, 8 7 }: 9 8 10 9 buildPythonPackage rec { 11 10 pname = "colorlog"; 12 - version = "6.8.2"; 11 + version = "6.9.0"; 13 12 pyproject = true; 14 13 15 14 src = fetchPypi { 16 15 inherit pname version; 17 - hash = "sha256-Pj4HmkH+taG2T5eLXqT0YECpTxHw6Lu4Jh49u+ymTUQ="; 16 + hash = "sha256-v7pUobk7lPVOH0/kg5VyWj2S/SpK9wL2vXCUa9wMasI="; 18 17 }; 19 18 20 - patches = [ 21 - (fetchpatch2 { 22 - name = "python313-compat.patch"; 23 - url = "https://github.com/borntyping/python-colorlog/commit/607485def2d60b60c40c0d682574324b47fc30ba.patch"; 24 - hash = "sha256-oO0efAOq7XIwt40Nq5pn2eXen1+p5FiUMDihn8fYAFg="; 25 - includes = [ "colorlog/wrappers.py" ]; 26 - }) 27 - ]; 28 - 29 - nativeBuildInputs = [ setuptools ]; 19 + build-system = [ setuptools ]; 30 20 31 21 pythonImportsCheck = [ "colorlog" ]; 32 22