My personal project and infrastructure archive
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 
nomicon/pkgs/development/python-modules/labmath/default.nix

21 lines
547 B

{ lib, buildPythonPackage, fetchPypi }:
buildPythonPackage rec {
pname = "labmath";
version = "2.2.0";
format = "pyproject";
src = fetchPypi {
inherit pname version;
sha256 = "sha256-dzJ4szPxnck0Cgc5IEp5FBmHvIyAC0rqKRVrkt20ntQ=";
};
pythonImportsCheck = [ "labmath" ];
meta = with lib; {
homepage = "https://pypi.org/project/labmath";
description = "Module for basic math in the general vicinity of computational number theory";
license = licenses.mit;
maintainers = with maintainers; [ siraben ];
};
}