bcb2f287e1
GitOrigin-RevId: d603719ec6e294f034936c0d0dc06f689d91b6c3
32 lines
601 B
Nix
32 lines
601 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 = "Python module for Functiontrace";
|
|
license = licenses.prosperity30;
|
|
maintainers = with maintainers; [ mathiassven ];
|
|
};
|
|
}
|