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