about summary refs log tree commit diff
path: root/pkgs/development/python-modules/line-profiler/default.nix
diff options
context:
space:
mode:
Diffstat (limited to 'pkgs/development/python-modules/line-profiler/default.nix')
-rw-r--r--pkgs/development/python-modules/line-profiler/default.nix31
1 files changed, 15 insertions, 16 deletions
diff --git a/pkgs/development/python-modules/line-profiler/default.nix b/pkgs/development/python-modules/line-profiler/default.nix
index 73fa920139de6..0873eff17d0fa 100644
--- a/pkgs/development/python-modules/line-profiler/default.nix
+++ b/pkgs/development/python-modules/line-profiler/default.nix
@@ -1,19 +1,20 @@
-{ lib
-, buildPythonPackage
-, fetchPypi
-, cython
-, isPyPy
-, ipython
-, scikit-build
-, cmake
-, pythonOlder
-, pytestCheckHook
-, ubelt
+{
+  lib,
+  buildPythonPackage,
+  fetchPypi,
+  cython,
+  isPyPy,
+  ipython,
+  scikit-build,
+  cmake,
+  pythonOlder,
+  pytestCheckHook,
+  ubelt,
 }:
 
 buildPythonPackage rec {
   pname = "line-profiler";
-  version = "4.1.2";
+  version = "4.1.3";
   format = "setuptools";
 
   disabled = pythonOlder "3.6" || isPyPy;
@@ -21,7 +22,7 @@ buildPythonPackage rec {
   src = fetchPypi {
     pname = "line_profiler";
     inherit version;
-    hash = "sha256-qlZXiw/1p1b+GAs/2nvWfCe71Hiz0BJGEtjPAOSiHfI=";
+    hash = "sha256-5fESPDZywyGLoGPCO9ZKURWeRGSf7WeAuZPHgfte0xg=";
   };
 
   nativeBuildInputs = [
@@ -50,9 +51,7 @@ buildPythonPackage rec {
     export PATH=$out/bin:$PATH
   '';
 
-  pythonImportsCheck = [
-    "line_profiler"
-  ];
+  pythonImportsCheck = [ "line_profiler" ];
 
   meta = with lib; {
     description = "Line-by-line profiler";