about summary refs log tree commit diff
path: root/pkgs/development/python-modules/gdown/default.nix
diff options
context:
space:
mode:
Diffstat (limited to 'pkgs/development/python-modules/gdown/default.nix')
-rw-r--r--pkgs/development/python-modules/gdown/default.nix35
1 files changed, 17 insertions, 18 deletions
diff --git a/pkgs/development/python-modules/gdown/default.nix b/pkgs/development/python-modules/gdown/default.nix
index 1b0b3aa70b92a..74b8f050bda38 100644
--- a/pkgs/development/python-modules/gdown/default.nix
+++ b/pkgs/development/python-modules/gdown/default.nix
@@ -1,28 +1,29 @@
-{ lib
-, beautifulsoup4
-, buildPythonPackage
-, fetchPypi
-, hatchling
-, hatch-vcs
-, hatch-fancy-pypi-readme
-, filelock
-, requests
-, tqdm
-, setuptools
-, six
-, pythonOlder
+{
+  lib,
+  beautifulsoup4,
+  buildPythonPackage,
+  fetchPypi,
+  hatchling,
+  hatch-vcs,
+  hatch-fancy-pypi-readme,
+  filelock,
+  requests,
+  tqdm,
+  setuptools,
+  six,
+  pythonOlder,
 }:
 
 buildPythonPackage rec {
   pname = "gdown";
-  version = "5.1.0";
+  version = "5.2.0";
   pyproject = true;
 
   disabled = pythonOlder "3.7";
 
   src = fetchPypi {
     inherit pname version;
-    hash = "sha256-VQpy3FyigZ/kvMFdgNBdfJjAuQ5XJWJUt30CVrnfRoM=";
+    hash = "sha256-IUUWUGLYVSCjzZizVsntUixeeYTUCFNUCf1G+U3vx4c=";
   };
 
   build-system = [
@@ -44,9 +45,7 @@ buildPythonPackage rec {
     $out/bin/gdown --help > /dev/null
   '';
 
-  pythonImportsCheck = [
-    "gdown"
-  ];
+  pythonImportsCheck = [ "gdown" ];
 
   meta = with lib; {
     description = "A CLI tool for downloading large files from Google Drive";