1{
2 lib,
3 buildPythonPackage,
4 fetchFromGitHub,
5}:
6
7buildPythonPackage rec {
8 pname = "py-expression-eval";
9 version = "0.3.14";
10 format = "setuptools";
11
12 src = fetchFromGitHub {
13 owner = "axiacore";
14 repo = "py-expression-eval";
15 rev = "v${version}";
16 sha256 = "YxhZd8V6ofphcNdcbBbrT5mc37O9c6W1mfhsvFVC+KM=";
17 };
18
19 meta = with lib; {
20 homepage = "https://github.com/AxiaCore/py-expression-eval/";
21 description = "Python Mathematical Expression Evaluator";
22 platforms = platforms.linux;
23 license = licenses.mit;
24 maintainers = with maintainers; [ cynerd ];
25 };
26}