diff options
Diffstat (limited to 'pkgs/development/python-modules/picos/default.nix')
-rw-r--r-- | pkgs/development/python-modules/picos/default.nix | 21 |
1 files changed, 10 insertions, 11 deletions
diff --git a/pkgs/development/python-modules/picos/default.nix b/pkgs/development/python-modules/picos/default.nix index 5bc5e35c6332..5d5e715ec648 100644 --- a/pkgs/development/python-modules/picos/default.nix +++ b/pkgs/development/python-modules/picos/default.nix @@ -1,10 +1,11 @@ -{ lib -, buildPythonPackage -, fetchFromGitLab -, numpy -, cvxopt -, python -, networkx +{ + lib, + buildPythonPackage, + fetchFromGitLab, + numpy, + cvxopt, + python, + networkx, }: buildPythonPackage rec { @@ -20,9 +21,7 @@ buildPythonPackage rec { }; # Needed only for the tests - nativeCheckInputs = [ - networkx - ]; + nativeCheckInputs = [ networkx ]; propagatedBuildInputs = [ numpy @@ -34,7 +33,7 @@ buildPythonPackage rec { ''; meta = with lib; { - description = "A Python interface to conic optimization solvers"; + description = "Python interface to conic optimization solvers"; homepage = "https://gitlab.com/picos-api/picos"; license = licenses.gpl3; maintainers = with maintainers; [ tobiasBora ]; |