Merge pull request #200999 from r-ryantm/auto-update/python310Packages.line_profiler

python310Packages.line_profiler: 3.5.1 -> 4.0.1
This commit is contained in:
Fabian Affolter 2022-12-05 00:05:51 +01:00 committed by GitHub
commit 9fad28e92d
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -13,14 +13,15 @@
buildPythonPackage rec {
pname = "line-profiler";
version = "3.5.1";
version = "4.0.1";
format = "setuptools";
disabled = pythonOlder "3.6" || isPyPy;
src = fetchPypi {
pname = "line_profiler";
inherit version;
sha256 = "sha256-d0ACCL+9XUNBk4qaOk+1GU9a9/wjstSWyRN1X4MQ6Lg=";
hash = "sha256-eXlt/5BUxtIZDnRz3umqXqkYqDcgYX5+goSzwBmneek=";
};
nativeBuildInputs = [
@ -54,6 +55,7 @@ buildPythonPackage rec {
meta = with lib; {
description = "Line-by-line profiler";
homepage = "https://github.com/pyutils/line_profiler";
changelog = "https://github.com/pyutils/line_profiler/blob/v${version}/CHANGELOG.rst";
license = licenses.bsd3;
maintainers = with maintainers; [ fridh ];
};