2024-06-05 15:53:02 +00:00
|
|
|
{
|
|
|
|
lib,
|
|
|
|
buildPythonPackage,
|
|
|
|
fetchPypi,
|
|
|
|
setuptools,
|
|
|
|
toml,
|
2023-04-12 12:48:02 +00:00
|
|
|
}:
|
|
|
|
|
|
|
|
buildPythonPackage rec {
|
|
|
|
pname = "functiontrace";
|
|
|
|
version = "0.3.7";
|
|
|
|
format = "pyproject";
|
|
|
|
|
|
|
|
src = fetchPypi {
|
|
|
|
inherit pname version;
|
|
|
|
hash = "sha256-3bnxZFq1/D9ntwfv7O2YU6MnKEDWWIG4zX0e3cgCleg=";
|
|
|
|
};
|
|
|
|
|
|
|
|
nativeBuildInputs = [
|
|
|
|
setuptools
|
|
|
|
toml
|
|
|
|
];
|
|
|
|
|
|
|
|
pythonImportsCheck = [ "functiontrace" ];
|
|
|
|
|
|
|
|
meta = with lib; {
|
|
|
|
homepage = "https://functiontrace.com";
|
2024-06-20 14:57:18 +00:00
|
|
|
description = "Python module for Functiontrace";
|
2023-04-12 12:48:02 +00:00
|
|
|
license = licenses.prosperity30;
|
|
|
|
maintainers = with maintainers; [ mathiassven ];
|
|
|
|
};
|
|
|
|
}
|