diff options
Diffstat (limited to 'pkgs/development/python-modules/protonup-ng/default.nix')
| -rw-r--r-- | pkgs/development/python-modules/protonup-ng/default.nix | 19 |
1 files changed, 16 insertions, 3 deletions
diff --git a/pkgs/development/python-modules/protonup-ng/default.nix b/pkgs/development/python-modules/protonup-ng/default.nix index 02695a5e3515..8e69e1c743d3 100644 --- a/pkgs/development/python-modules/protonup-ng/default.nix +++ b/pkgs/development/python-modules/protonup-ng/default.nix @@ -1,4 +1,11 @@ -{ lib, buildPythonPackage, pythonOlder, fetchPypi, requests, configparser }: +{ + lib, + buildPythonPackage, + pythonOlder, + fetchPypi, + requests, + configparser, +}: buildPythonPackage rec { pname = "protonup-ng"; @@ -16,7 +23,10 @@ buildPythonPackage rec { --replace "argparse" "" ''; - propagatedBuildInputs = [ requests configparser ]; + propagatedBuildInputs = [ + requests + configparser + ]; doCheck = false; # protonup does not have any tests pythonImportsCheck = [ "protonup" ]; @@ -25,7 +35,10 @@ buildPythonPackage rec { homepage = "https://github.com/cloudishBenne/protonup-ng"; description = "CLI program and API to automate the installation and update of GloriousEggroll's Proton-GE"; license = licenses.gpl3Only; - maintainers = with maintainers; [ Madouura cafkafk ]; + maintainers = with maintainers; [ + Madouura + cafkafk + ]; mainProgram = "protonup"; }; } |
