about summary refs log tree commit diff
path: root/pkgs/development/python-modules/niworkflows/default.nix
diff options
context:
space:
mode:
Diffstat (limited to 'pkgs/development/python-modules/niworkflows/default.nix')
-rw-r--r--pkgs/development/python-modules/niworkflows/default.nix59
1 files changed, 30 insertions, 29 deletions
diff --git a/pkgs/development/python-modules/niworkflows/default.nix b/pkgs/development/python-modules/niworkflows/default.nix
index 1616cfff46379..d6eb920d36d4c 100644
--- a/pkgs/development/python-modules/niworkflows/default.nix
+++ b/pkgs/development/python-modules/niworkflows/default.nix
@@ -1,42 +1,43 @@
-{ lib
-, buildPythonPackage
-, fetchFromGitHub
-, hatch-vcs
-, hatchling
-, pytestCheckHook
-, attrs
-, importlib-resources
-, jinja2
-, looseversion
-, matplotlib
-, nibabel
-, nilearn
-, nipype
-, nitransforms
-, numpy
-, packaging
-, pandas
-, pybids
-, pyyaml
-, scikit-image
-, scipy
-, seaborn
-, svgutils
-, templateflow
-, traits
-, transforms3d
+{
+  lib,
+  buildPythonPackage,
+  fetchFromGitHub,
+  hatch-vcs,
+  hatchling,
+  pytestCheckHook,
+  attrs,
+  importlib-resources,
+  jinja2,
+  looseversion,
+  matplotlib,
+  nibabel,
+  nilearn,
+  nipype,
+  nitransforms,
+  numpy,
+  packaging,
+  pandas,
+  pybids,
+  pyyaml,
+  scikit-image,
+  scipy,
+  seaborn,
+  svgutils,
+  templateflow,
+  traits,
+  transforms3d,
 }:
 
 buildPythonPackage rec {
   pname = "niworkflows";
-  version = "1.10.1";
+  version = "1.10.2";
   pyproject = true;
 
   src = fetchFromGitHub {
     owner = "nipreps";
     repo = "niworkflows";
     rev = "refs/tags/${version}";
-    hash = "sha256-ZOn3KSaPAA8zTdyexrjF9Wkb5C5qA/5eSJahg2DcX20=";
+    hash = "sha256-29ZxLuKrvgCIOMMCUpi0HHhlNlgqUrUrSCiikwecmKw=";
   };
 
   postPatch = ''