tailscale: build derpprobe (#364918)
[NixPkgs.git] / pkgs / development / python-modules / functiontrace / default.nix
blob0982baa619e27484c0d07ad841e5ac30fd46a85b
2   lib,
3   buildPythonPackage,
4   fetchPypi,
5   setuptools,
6   toml,
7 }:
9 buildPythonPackage rec {
10   pname = "functiontrace";
11   version = "0.3.7";
12   format = "pyproject";
14   src = fetchPypi {
15     inherit pname version;
16     hash = "sha256-3bnxZFq1/D9ntwfv7O2YU6MnKEDWWIG4zX0e3cgCleg=";
17   };
19   nativeBuildInputs = [
20     setuptools
21     toml
22   ];
24   pythonImportsCheck = [ "functiontrace" ];
26   meta = with lib; {
27     homepage = "https://functiontrace.com";
28     description = "Python module for Functiontrace";
29     license = licenses.prosperity30;
30     maintainers = with maintainers; [ mathiassven ];
31   };