lol

python311Packages.line-profiler: 4.0.2 -> 4.1.2

Changelog: https://github.com/pyutils/line_profiler/blob/v4.1.2/CHANGELOG.rst

+4 -4
+4 -4
pkgs/development/python-modules/line-profiler/default.nix
··· 1 1 { lib 2 2 , buildPythonPackage 3 3 , fetchPypi 4 - , cython 4 + , cython_3 5 5 , isPyPy 6 6 , ipython 7 7 , scikit-build ··· 13 13 14 14 buildPythonPackage rec { 15 15 pname = "line-profiler"; 16 - version = "4.0.2"; 16 + version = "4.1.2"; 17 17 format = "setuptools"; 18 18 19 19 disabled = pythonOlder "3.6" || isPyPy; ··· 21 21 src = fetchPypi { 22 22 pname = "line_profiler"; 23 23 inherit version; 24 - hash = "sha256-JejJ1CSNxIkFgBhR/4p1ucdIJ6CHHRGNEQTY5D1/sPw="; 24 + hash = "sha256-qlZXiw/1p1b+GAs/2nvWfCe71Hiz0BJGEtjPAOSiHfI="; 25 25 }; 26 26 27 27 nativeBuildInputs = [ 28 - cython 28 + cython_3 29 29 cmake 30 30 scikit-build 31 31 ];