functiontrace: init at 0.3.7

Signed-off-by: Mathias Sven <mathiassven2@hotmail.com>
Co-authored-by: Lily Foster <lily@lily.flowers>
This commit is contained in:
Mathias Sven 2023-03-24 23:18:28 +00:00
parent a9cbb20640
commit f2589ad262
No known key found for this signature in database
GPG key ID: 9562255303008AB3
2 changed files with 33 additions and 0 deletions

View file

@ -0,0 +1,31 @@
{ 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 ];
};
}

View file

@ -3711,6 +3711,8 @@ self: super: with self; {
funcsigs = callPackage ../development/python-modules/funcsigs { };
functiontrace = callPackage ../development/python-modules/functiontrace { };
functools32 = callPackage ../development/python-modules/functools32 { };
funcy = callPackage ../development/python-modules/funcy { };