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