about summary refs log tree commit diff
path: root/pkgs/development/python-modules/conway-polynomials/default.nix
blob: c89898e851079794c727842700a0ddb7a53685b9 (plain) (blame)
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
{
  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;
  };
}