fa5436e0a7
GitOrigin-RevId: e8057b67ebf307f01bdcc8fba94d94f75039d1f6
28 lines
590 B
Nix
28 lines
590 B
Nix
{
|
|
lib,
|
|
fetchPypi,
|
|
buildPythonPackage,
|
|
pytestCheckHook,
|
|
}:
|
|
|
|
buildPythonPackage rec {
|
|
pname = "cexprtk";
|
|
version = "0.4.1";
|
|
format = "setuptools";
|
|
|
|
src = fetchPypi {
|
|
inherit pname version;
|
|
hash = "sha256-QhftIybufVPO/YbLFycR4qYEAtQMcRPP5jKS6o6dFZg=";
|
|
};
|
|
|
|
nativeCheckInputs = [ pytestCheckHook ];
|
|
|
|
pythonImportsCheck = [ "cexprtk" ];
|
|
|
|
meta = with lib; {
|
|
description = "Mathematical expression parser, cython wrapper";
|
|
homepage = "https://github.com/mjdrushton/cexprtk";
|
|
license = licenses.cpl10;
|
|
maintainers = with maintainers; [ onny ];
|
|
};
|
|
}
|