My personal project and infrastructure archive
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 
nomicon/pkgs/development/python-modules/pplpy/default.nix

62 lines
1.1 KiB

{ lib
, fetchPypi
, buildPythonPackage
, gmp
, mpfr
, libmpc
, ppl
, cython
, cysignals
, gmpy2
, sphinx
}:
buildPythonPackage rec {
pname = "pplpy";
version = "0.8.7";
src = fetchPypi {
inherit pname version;
sha256 = "500bd0f4ae1a76956fae7fcba77854f5ec3e64fce76803664983763c3f2bd8bd";
};
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 = teams.sage.members;
license = licenses.gpl3;
};
}