Merge pull request #222970 from MathiasSven/functiontrace
functiontrace: init at 0.3.7
This commit is contained in:
commit
5aa7ff1ce7
3 changed files with 39 additions and 0 deletions
|
@ -9449,6 +9449,12 @@
|
||||||
githubId = 43853194;
|
githubId = 43853194;
|
||||||
name = "Matheus Vieira";
|
name = "Matheus Vieira";
|
||||||
};
|
};
|
||||||
|
mathiassven = {
|
||||||
|
email = "github@mathiassven.com";
|
||||||
|
github = "MathiasSven";
|
||||||
|
githubId = 24759037;
|
||||||
|
name = "Mathias Sven";
|
||||||
|
};
|
||||||
mathnerd314 = {
|
mathnerd314 = {
|
||||||
email = "mathnerd314.gph+hs@gmail.com";
|
email = "mathnerd314.gph+hs@gmail.com";
|
||||||
github = "Mathnerd314";
|
github = "Mathnerd314";
|
||||||
|
|
31
pkgs/development/python-modules/functiontrace/default.nix
Normal file
31
pkgs/development/python-modules/functiontrace/default.nix
Normal 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 ];
|
||||||
|
};
|
||||||
|
}
|
|
@ -3733,6 +3733,8 @@ self: super: with self; {
|
||||||
|
|
||||||
funcsigs = callPackage ../development/python-modules/funcsigs { };
|
funcsigs = callPackage ../development/python-modules/funcsigs { };
|
||||||
|
|
||||||
|
functiontrace = callPackage ../development/python-modules/functiontrace { };
|
||||||
|
|
||||||
functools32 = callPackage ../development/python-modules/functools32 { };
|
functools32 = callPackage ../development/python-modules/functools32 { };
|
||||||
|
|
||||||
funcy = callPackage ../development/python-modules/funcy { };
|
funcy = callPackage ../development/python-modules/funcy { };
|
||||||
|
|
Loading…
Reference in a new issue