2021-01-15 22:18:51 +00:00
|
|
|
{ lib, stdenv
|
2020-04-24 23:36:52 +00:00
|
|
|
, fetchFromGitHub
|
|
|
|
, autoreconfHook
|
2021-02-05 17:12:51 +00:00
|
|
|
, pkg-config
|
2020-04-24 23:36:52 +00:00
|
|
|
, flint
|
|
|
|
, gmp
|
2020-11-24 20:58:05 +00:00
|
|
|
, python3
|
2020-04-24 23:36:52 +00:00
|
|
|
, singular
|
2020-11-24 20:58:05 +00:00
|
|
|
, ncurses
|
2020-04-24 23:36:52 +00:00
|
|
|
}:
|
|
|
|
|
|
|
|
stdenv.mkDerivation rec {
|
2021-07-17 21:14:59 +00:00
|
|
|
version = "0.7.29";
|
2020-04-24 23:36:52 +00:00
|
|
|
pname = "pynac";
|
|
|
|
|
|
|
|
src = fetchFromGitHub {
|
|
|
|
owner = "pynac";
|
|
|
|
repo = "pynac";
|
|
|
|
rev = "pynac-${version}";
|
2021-07-17 21:14:59 +00:00
|
|
|
sha256 = "sha256-ocR7emXtKs+Xe2f6dh4xEDAacgiolY8mtlLnWnNBS8A=";
|
2020-04-24 23:36:52 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
buildInputs = [
|
|
|
|
flint
|
|
|
|
gmp
|
|
|
|
singular
|
2020-11-24 20:58:05 +00:00
|
|
|
python3
|
|
|
|
ncurses
|
2020-04-24 23:36:52 +00:00
|
|
|
];
|
|
|
|
|
|
|
|
nativeBuildInputs = [
|
|
|
|
autoreconfHook
|
2021-02-05 17:12:51 +00:00
|
|
|
pkg-config
|
2020-04-24 23:36:52 +00:00
|
|
|
];
|
|
|
|
|
2021-01-15 22:18:51 +00:00
|
|
|
meta = with lib; {
|
2020-04-24 23:36:52 +00:00
|
|
|
description = "Python is Not a CAS -- modified version of Ginac";
|
|
|
|
longDescription = ''
|
|
|
|
Pynac -- "Python is Not a CAS" is a modified version of Ginac that
|
|
|
|
replaces the depency of GiNaC on CLN by a dependency instead of Python.
|
|
|
|
It is a lite version of GiNaC as well, not implementing all the features
|
|
|
|
of the full GiNaC, and it is *only* meant to be used as a Python library.
|
|
|
|
'';
|
|
|
|
homepage = "http://pynac.org";
|
2021-07-17 21:14:59 +00:00
|
|
|
license = licenses.gpl2Plus;
|
2020-11-21 19:51:51 +00:00
|
|
|
maintainers = teams.sage.members;
|
2020-04-24 23:36:52 +00:00
|
|
|
platforms = platforms.unix;
|
|
|
|
};
|
|
|
|
}
|