1
0
Fork 1
mirror of https://github.com/NixOS/nixpkgs.git synced 2024-11-20 12:42:24 +00:00

pynac: init at 0.7.19

This commit is contained in:
Timo Kaufmann 2018-04-11 13:01:17 +02:00 committed by Matthew Justin Bauer
parent a037da9afe
commit 7dc6b2e3c3
2 changed files with 49 additions and 0 deletions

View file

@ -0,0 +1,47 @@
{ stdenv
, fetchFromGitHub
, autoreconfHook
, pkgconfig
, flint
, gmp
, python2
, singular
}:
stdenv.mkDerivation rec {
version = "0.7.19";
name = "pynac-${version}";
src = fetchFromGitHub {
owner = "pynac";
repo = "pynac";
rev = "pynac-${version}";
sha256 = "132bibvapm245c5xy29j3xmjs0pawvw7lv05374m8vv1m39127d3";
};
buildInputs = [
flint
gmp
singular
singular
python2
];
nativeBuildInputs = [
autoreconfHook
pkgconfig
];
meta = with stdenv.lib; {
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;
maintainers = with maintainers; [ timokau ];
platforms = platforms.linux;
};
}

View file

@ -20280,6 +20280,8 @@ with pkgs;
inherit (gnome3) gtksourceview;
};
pynac = callPackage ../applications/science/math/pynac { };
singular = callPackage ../applications/science/math/singular { };
scilab = callPackage ../applications/science/math/scilab {