depot/third_party/nixpkgs/pkgs/development/python-modules/conway-polynomials/default.nix
Default email f34ce41345 Project import generated by Copybara.
GitOrigin-RevId: b73c2221a46c13557b1b3be9c2070cc42cf01eb3
2024-07-27 08:49:29 +02:00

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;
};
}