diff options
Diffstat (limited to 'pkgs/development/python-modules/parfive/default.nix')
-rw-r--r-- | pkgs/development/python-modules/parfive/default.nix | 39 |
1 files changed, 18 insertions, 21 deletions
diff --git a/pkgs/development/python-modules/parfive/default.nix b/pkgs/development/python-modules/parfive/default.nix index 22f0c1c39eca..4751f655974d 100644 --- a/pkgs/development/python-modules/parfive/default.nix +++ b/pkgs/development/python-modules/parfive/default.nix @@ -1,16 +1,17 @@ -{ lib -, aiofiles -, aioftp -, aiohttp -, buildPythonPackage -, fetchPypi -, pytest-asyncio -, pytest-localserver -, pytest-socket -, pytestCheckHook -, pythonOlder -, setuptools-scm -, tqdm +{ + lib, + aiofiles, + aioftp, + aiohttp, + buildPythonPackage, + fetchPypi, + pytest-asyncio, + pytest-localserver, + pytest-socket, + pytestCheckHook, + pythonOlder, + setuptools-scm, + tqdm, }: buildPythonPackage rec { @@ -25,9 +26,7 @@ buildPythonPackage rec { hash = "sha256-zWy0GSQhMHMM9B1M9vKE6/UPGnHObJUI4EZ+yY8X3I4="; }; - buildInputs = [ - setuptools-scm - ]; + buildInputs = [ setuptools-scm ]; propagatedBuildInputs = [ aioftp @@ -50,15 +49,13 @@ buildPythonPackage rec { "test_ftp_http" ]; - pythonImportsCheck = [ - "parfive" - ]; + pythonImportsCheck = [ "parfive" ]; meta = with lib; { - description = "A HTTP and FTP parallel file downloader"; + description = "HTTP and FTP parallel file downloader"; mainProgram = "parfive"; homepage = "https://parfive.readthedocs.io/"; license = licenses.mit; - maintainers = with maintainers; [ ]; + maintainers = [ ]; }; } |