at master 605 B view raw
1{ 2 lib, 3 buildPythonPackage, 4 fetchPypi, 5 setuptools, 6}: 7 8buildPythonPackage rec { 9 pname = "labmath"; 10 version = "2.2.0"; 11 format = "pyproject"; 12 13 src = fetchPypi { 14 inherit pname version; 15 hash = "sha256-dzJ4szPxnck0Cgc5IEp5FBmHvIyAC0rqKRVrkt20ntQ="; 16 }; 17 18 nativeBuildInputs = [ setuptools ]; 19 20 pythonImportsCheck = [ "labmath" ]; 21 22 meta = with lib; { 23 homepage = "https://pypi.org/project/labmath"; 24 description = "Module for basic math in the general vicinity of computational number theory"; 25 license = licenses.mit; 26 maintainers = with maintainers; [ siraben ]; 27 }; 28}