fa5436e0a7
GitOrigin-RevId: e8057b67ebf307f01bdcc8fba94d94f75039d1f6
32 lines
605 B
Nix
32 lines
605 B
Nix
{
|
|
lib,
|
|
buildPythonPackage,
|
|
fetchPypi,
|
|
setuptools,
|
|
toml,
|
|
}:
|
|
|
|
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";
|
|
description = "The Python module for Functiontrace";
|
|
license = licenses.prosperity30;
|
|
maintainers = with maintainers; [ mathiassven ];
|
|
};
|
|
}
|