about summary refs log tree commit diff
path: root/pkgs/development/python-modules/usort/default.nix
diff options
context:
space:
mode:
Diffstat (limited to 'pkgs/development/python-modules/usort/default.nix')
-rw-r--r--pkgs/development/python-modules/usort/default.nix39
1 files changed, 19 insertions, 20 deletions
diff --git a/pkgs/development/python-modules/usort/default.nix b/pkgs/development/python-modules/usort/default.nix
index 68dbe6a9b7d58..bfb650c91c0b6 100644
--- a/pkgs/development/python-modules/usort/default.nix
+++ b/pkgs/development/python-modules/usort/default.nix
@@ -1,23 +1,24 @@
-{ lib
-, attrs
-, buildPythonPackage
-, click
-, fetchFromGitHub
-, hatch-vcs
-, hatchling
-, libcst
-, moreorless
-, pythonOlder
-, stdlibs
-, toml
-, trailrunner
-, unittestCheckHook
-, volatile
+{
+  lib,
+  attrs,
+  buildPythonPackage,
+  click,
+  fetchFromGitHub,
+  hatch-vcs,
+  hatchling,
+  libcst,
+  moreorless,
+  pythonOlder,
+  stdlibs,
+  toml,
+  trailrunner,
+  unittestCheckHook,
+  volatile,
 }:
 
 buildPythonPackage rec {
   pname = "usort";
-  version = "1.0.7";
+  version = "1.0.8";
   format = "pyproject";
 
   disabled = pythonOlder "3.7";
@@ -26,7 +27,7 @@ buildPythonPackage rec {
     owner = "facebook";
     repo = "usort";
     rev = "refs/tags/v${version}";
-    hash = "sha256-emnrghdsUs+VfvYiJExG13SKQNrXAEtGNAJQLScADnw=";
+    hash = "sha256-iezq2K+Rw0djyOoFm7tguw/vkkDSyrPZIfZPmaZvFpM=";
   };
 
   nativeBuildInputs = [
@@ -49,9 +50,7 @@ buildPythonPackage rec {
     volatile
   ];
 
-  pythonImportsCheck = [
-    "usort"
-  ];
+  pythonImportsCheck = [ "usort" ];
 
   meta = with lib; {
     description = "Safe, minimal import sorting for Python projects";