python.pkgs.pplpy: init at 0.8.4
This is a new dependency for the upcoming sage version.
This commit is contained in:
parent
68233970a2
commit
1f643b9c49
64
pkgs/development/python-modules/pplpy/default.nix
Normal file
64
pkgs/development/python-modules/pplpy/default.nix
Normal file
@ -0,0 +1,64 @@
|
||||
{ lib
|
||||
, python
|
||||
, fetchPypi
|
||||
, buildPythonPackage
|
||||
, gmp
|
||||
, mpfr
|
||||
, libmpc
|
||||
, ppl
|
||||
, pari
|
||||
, cython
|
||||
, cysignals
|
||||
, gmpy2
|
||||
, sphinx
|
||||
}:
|
||||
|
||||
buildPythonPackage rec {
|
||||
pname = "pplpy";
|
||||
version = "0.8.4";
|
||||
|
||||
src = fetchPypi {
|
||||
inherit pname version;
|
||||
sha256 = "0dk8l5r3f2jbkkasddvxwvhlq35pjsiirh801lrapv8lb16r2qmr";
|
||||
};
|
||||
|
||||
buildInputs = [
|
||||
gmp
|
||||
mpfr
|
||||
libmpc
|
||||
ppl
|
||||
];
|
||||
|
||||
nativeBuildInputs = [
|
||||
sphinx # docbuild, called by make
|
||||
];
|
||||
|
||||
propagatedBuildInputs = [
|
||||
cython
|
||||
cysignals
|
||||
gmpy2
|
||||
];
|
||||
|
||||
outputs = [ "out" "doc" ];
|
||||
|
||||
postBuild = ''
|
||||
# Find the build result in order to put it into PYTHONPATH. The doc
|
||||
# build needs to import pplpy.
|
||||
build_result="$PWD/$( find build/ -type d -name 'lib.*' | head -n1 )"
|
||||
|
||||
echo "Building documentation"
|
||||
PYTHONPATH="$build_result:$PYTHONPATH" make -C docs html
|
||||
'';
|
||||
|
||||
postInstall = ''
|
||||
mkdir -p "$doc/share/doc"
|
||||
mv docs/build/html "$doc/share/doc/pplpy"
|
||||
'';
|
||||
|
||||
meta = with lib; {
|
||||
description = "A Python wrapper for ppl";
|
||||
homepage = https://gitlab.com/videlec/pplpy;
|
||||
maintainers = with maintainers; [ timokau ];
|
||||
license = licenses.gpl3;
|
||||
};
|
||||
}
|
@ -585,6 +585,8 @@ in {
|
||||
|
||||
poetry = callPackage ../development/python-modules/poetry { };
|
||||
|
||||
pplpy = callPackage ../development/python-modules/pplpy { };
|
||||
|
||||
pprintpp = callPackage ../development/python-modules/pprintpp { };
|
||||
|
||||
progress = callPackage ../development/python-modules/progress { };
|
||||
|
Loading…
Reference in New Issue
Block a user