2021-01-11 07:54:33 +00:00
|
|
|
{ lib, stdenv
|
2018-04-24 22:29:32 +01:00
|
|
|
, fetchurl
|
2021-12-06 00:44:37 +00:00
|
|
|
, python3
|
2018-04-24 22:29:32 +01:00
|
|
|
}:
|
|
|
|
|
|
|
|
stdenv.mkDerivation rec {
|
2019-08-15 13:41:18 +01:00
|
|
|
pname = "conway_polynomials";
|
2018-04-24 22:29:32 +01:00
|
|
|
version = "0.5";
|
|
|
|
|
|
|
|
src = fetchurl {
|
|
|
|
url = "mirror://sageupstream/conway_polynomials/conway_polynomials-${version}.tar.bz2";
|
|
|
|
sha256 = "05zb1ly9x2bbscqv0jgc45g48xx77mfs7qdbqhn4ihmihn57iwnq";
|
|
|
|
};
|
|
|
|
|
|
|
|
# Script that creates the "database" (nested python array) and pickles it
|
|
|
|
spkg-install = fetchurl {
|
2021-12-06 00:44:37 +00:00
|
|
|
url = "https://git.sagemath.org/sage.git/plain/build/pkgs/conway_polynomials/spkg-install.py?id=9.2";
|
|
|
|
sha256 = "1bwnqasnyv793hxg29viing4dnliz29grkhldsirq19d509yk1fs";
|
2018-04-24 22:29:32 +01:00
|
|
|
};
|
|
|
|
|
|
|
|
installPhase = ''
|
|
|
|
# directory layout as spkg-install.py expects
|
|
|
|
dir="$PWD"
|
|
|
|
cd ..
|
|
|
|
ln -s "$dir" "src"
|
|
|
|
|
|
|
|
# environment spkg-install.py expects
|
|
|
|
mkdir -p "$out/share"
|
|
|
|
export SAGE_SHARE="$out/share"
|
|
|
|
export PYTHONPATH=$PWD
|
|
|
|
|
2021-12-06 00:44:37 +00:00
|
|
|
${python3.interpreter} ${spkg-install}
|
2018-04-24 22:29:32 +01:00
|
|
|
'';
|
|
|
|
|
2021-01-11 07:54:33 +00:00
|
|
|
meta = with lib; {
|
2020-10-11 06:55:05 +01:00
|
|
|
description = "Contains a small database of Conway polynomials";
|
2018-04-24 22:29:32 +01:00
|
|
|
license = licenses.gpl2;
|
|
|
|
platforms = platforms.all;
|
2020-11-17 19:41:33 +00:00
|
|
|
maintainers = teams.sage.members;
|
2018-04-24 22:29:32 +01:00
|
|
|
};
|
|
|
|
}
|