mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-12-18 19:54:05 +00:00
f2589ad262
Signed-off-by: Mathias Sven <mathiassven2@hotmail.com> Co-authored-by: Lily Foster <lily@lily.flowers>
32 lines
598 B
Nix
32 lines
598 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 ];
|
|
};
|
|
}
|