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/pymbolic/default.nix

33 lines
584 B

{ lib
, buildPythonPackage
, fetchPypi
, matchpy
, pytools
, pytestCheckHook
}:
buildPythonPackage rec {
pname = "pymbolic";
version = "2022.1";
src = fetchPypi {
inherit pname version;
sha256 = "sha256-tS9FHdC5gD4D3jMgrzt85XIwcAYcbSMcACFvbaQlkBI=";
};
propagatedBuildInputs = [
pytools
];
checkInputs = [
matchpy
pytestCheckHook
];
meta = with lib; {
description = "A package for symbolic computation";
homepage = "https://documen.tician.de/pymbolic/";
license = licenses.mit;
maintainers = [ maintainers.costrouc ];
};
}