1{ 2 lib, 3 fetchPypi, 4 buildPythonPackage, 5}: 6 7buildPythonPackage rec { 8 pname = "conway-polynomials"; 9 version = "0.9"; 10 11 src = fetchPypi { 12 inherit pname version; 13 hash = "sha256-btIwBgm8558BddW4VGhY7sAoVPi+MjfbjRRJzMzBxYE="; 14 }; 15 16 pythonImportsCheck = [ "conway_polynomials" ]; 17 18 meta = with lib; { 19 description = "Python interface to Frank Lübeck's Conway polynomial database"; 20 homepage = "https://github.com/sagemath/conway-polynomials"; 21 maintainers = teams.sage.members; 22 license = licenses.gpl3Plus; 23 }; 24}