Clone of https://github.com/NixOS/nixpkgs.git (to stress-test knotserver)
1{ lib, fetchPypi, buildPythonPackage }: 2 3buildPythonPackage rec { 4 pname = "simpleeval"; 5 version = "0.9.8"; 6 src = fetchPypi { 7 inherit pname version; 8 sha256 = "00fzwbjg98lsnmfzmbgzg1k8q8iqbahcxjnnlhzhb44phrhcxql5"; 9 }; 10 meta = { 11 homepage = https://github.com/danthedeckie/simpleeval; 12 description = "A simple, safe single expression evaluator library"; 13 maintainers = with lib.maintainers; [ johbo ]; 14 license = lib.licenses.mit; 15 }; 16}