blob: 448e07d8e2fd4cc56176c1da7d395d92c31b0957 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
|
{
lib,
fetchPypi,
buildPythonPackage,
cython,
pkg-config,
lrcalc,
}:
buildPythonPackage rec {
pname = "lrcalc-python";
version = "2.1";
format = "setuptools";
src = fetchPypi {
inherit version;
pname = "lrcalc";
sha256 = "e3a0509aeda487b412b391a52e817ca36b5c063a8305e09fd54d53259dd6aaa9";
};
nativeBuildInputs = [
cython
pkg-config
];
buildInputs = [ lrcalc ];
pythonImportsCheck = [ "lrcalc" ];
meta = {
description = "Littlewood-Richardson Calculator bindings";
homepage = "https://sites.math.rutgers.edu/~asbuch/lrcalc/";
teams = [ lib.teams.sage ];
license = lib.licenses.gpl3;
};
}
|