1{ 2 lib, 3 buildPythonPackage, 4 fetchPypi, 5 setuptools, 6 toml, 7}: 8 9buildPythonPackage rec { 10 pname = "functiontrace"; 11 version = "0.3.7"; 12 format = "pyproject"; 13 14 src = fetchPypi { 15 inherit pname version; 16 hash = "sha256-3bnxZFq1/D9ntwfv7O2YU6MnKEDWWIG4zX0e3cgCleg="; 17 }; 18 19 nativeBuildInputs = [ 20 setuptools 21 toml 22 ]; 23 24 pythonImportsCheck = [ "functiontrace" ]; 25 26 meta = with lib; { 27 homepage = "https://functiontrace.com"; 28 description = "The Python module for Functiontrace"; 29 license = licenses.prosperity30; 30 maintainers = with maintainers; [ mathiassven ]; 31 }; 32}