diff options
Diffstat (limited to 'pkgs/development/python-modules/pplpy/default.nix')
| -rw-r--r-- | pkgs/development/python-modules/pplpy/default.nix | 36 |
1 files changed, 21 insertions, 15 deletions
diff --git a/pkgs/development/python-modules/pplpy/default.nix b/pkgs/development/python-modules/pplpy/default.nix index 4a4d97c554cf..6c1e7d193dbd 100644 --- a/pkgs/development/python-modules/pplpy/default.nix +++ b/pkgs/development/python-modules/pplpy/default.nix @@ -1,17 +1,18 @@ -{ lib -, fetchPypi -, buildPythonPackage -, gmp -, mpfr -, libmpc -, ppl -, cython -, cysignals -, gmpy2 -, sphinx +{ + lib, + fetchPypi, + buildPythonPackage, + gmp, + mpfr, + libmpc, + ppl, + cython, + cysignals, + gmpy2, + sphinx, -# Reverse dependency -, sage + # Reverse dependency + sage, }: buildPythonPackage rec { @@ -41,7 +42,10 @@ buildPythonPackage rec { gmpy2 ]; - outputs = [ "out" "doc" ]; + outputs = [ + "out" + "doc" + ]; postBuild = '' # Find the build result in order to put it into PYTHONPATH. The doc @@ -57,7 +61,9 @@ buildPythonPackage rec { mv docs/build/html "$doc/share/doc/pplpy" ''; - passthru.tests = { inherit sage; }; + passthru.tests = { + inherit sage; + }; meta = with lib; { description = "A Python wrapper for ppl"; |
