f34ce41345
GitOrigin-RevId: b73c2221a46c13557b1b3be9c2070cc42cf01eb3
29 lines
639 B
Nix
29 lines
639 B
Nix
{
|
|
lib,
|
|
fetchPypi,
|
|
buildPythonPackage,
|
|
setuptools,
|
|
}:
|
|
|
|
buildPythonPackage rec {
|
|
pname = "conway-polynomials";
|
|
version = "0.10";
|
|
pyproject = true;
|
|
|
|
src = fetchPypi {
|
|
pname = "conway_polynomials";
|
|
inherit version;
|
|
hash = "sha256-T2GfZPgaPrFsTibFooT+7sJ6b0qtZHZD55ryiYAa4PM=";
|
|
};
|
|
|
|
build-system = [ setuptools ];
|
|
|
|
pythonImportsCheck = [ "conway_polynomials" ];
|
|
|
|
meta = with lib; {
|
|
description = "Python interface to Frank Lübeck's Conway polynomial database";
|
|
homepage = "https://github.com/sagemath/conway-polynomials";
|
|
maintainers = teams.sage.members;
|
|
license = licenses.gpl3Plus;
|
|
};
|
|
}
|