conway_polynomials: init at 0.5
This commit is contained in:
parent
6fc8b0d69a
commit
c7d4528a89
43
pkgs/data/misc/conway_polynomials/default.nix
Normal file
43
pkgs/data/misc/conway_polynomials/default.nix
Normal file
@ -0,0 +1,43 @@
|
||||
{ stdenv
|
||||
, fetchurl
|
||||
, python
|
||||
}:
|
||||
|
||||
stdenv.mkDerivation rec {
|
||||
name = "conway_polynomials-${version}";
|
||||
version = "0.5";
|
||||
|
||||
pythonEnv = python.withPackages (ps: with ps; [ six ]);
|
||||
|
||||
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 {
|
||||
url = "https://git.sagemath.org/sage.git/plain/build/pkgs/conway_polynomials/spkg-install.py?id=07d6c37d18811e2b377a9689790a7c5e24da16ba";
|
||||
sha256 = "0m12nfb37j3bn4bp06ddgnyp2d6z0hg5f83pbbjszxw7vxs33a82";
|
||||
};
|
||||
|
||||
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
|
||||
|
||||
${pythonEnv.interpreter} ${spkg-install}
|
||||
'';
|
||||
|
||||
meta = with stdenv.lib; {
|
||||
description = "Contains a small database of Conway polynomials.";
|
||||
license = licenses.gpl2;
|
||||
platforms = platforms.all;
|
||||
maintainers = with maintainers; [ timokau ];
|
||||
};
|
||||
}
|
@ -14588,6 +14588,8 @@ with pkgs;
|
||||
|
||||
combinatorial_designs = callPackage ../data/misc/combinatorial_designs { };
|
||||
|
||||
conway_polynomials = callPackage ../data/misc/conway_polynomials { };
|
||||
|
||||
dosis = callPackage ../data/fonts/dosis { };
|
||||
|
||||
dosemu_fonts = callPackage ../data/fonts/dosemu-fonts { };
|
||||
|
Loading…
Reference in New Issue
Block a user