summaryrefslogtreecommitdiff
path: root/pkgs/development/python-modules/fastdownload/default.nix
diff options
context:
space:
mode:
Diffstat (limited to 'pkgs/development/python-modules/fastdownload/default.nix')
-rw-r--r--pkgs/development/python-modules/fastdownload/default.nix18
1 files changed, 11 insertions, 7 deletions
diff --git a/pkgs/development/python-modules/fastdownload/default.nix b/pkgs/development/python-modules/fastdownload/default.nix
index 934ce6861ad6..82e9281dbf43 100644
--- a/pkgs/development/python-modules/fastdownload/default.nix
+++ b/pkgs/development/python-modules/fastdownload/default.nix
@@ -1,9 +1,10 @@
-{ lib
-, buildPythonPackage
-, fetchPypi
-, fastprogress
-, fastcore
-, pythonOlder
+{
+ lib,
+ buildPythonPackage,
+ fetchPypi,
+ fastprogress,
+ fastcore,
+ pythonOlder,
}:
buildPythonPackage rec {
@@ -17,7 +18,10 @@ buildPythonPackage rec {
sha256 = "sha256-IFB+246JQGofvXd15uKj2BpN1jPdUGsOnPDhYT6DHWo=";
};
- propagatedBuildInputs = [ fastprogress fastcore ];
+ propagatedBuildInputs = [
+ fastprogress
+ fastcore
+ ];
# no real tests
doCheck = false;