Merge pull request #307098 from r-ryantm/auto-update/cilium-cli
[NixPkgs.git] / pkgs / development / python-modules / functiontrace / default.nix
blob0b34da111b36da9bbb2913b35ff1f9409a4751f0
1 { lib
2 , buildPythonPackage
3 , fetchPypi
4 , setuptools
5 , toml
6 }:
8 buildPythonPackage rec {
9   pname = "functiontrace";
10   version = "0.3.7";
11   format = "pyproject";
13   src = fetchPypi {
14     inherit pname version;
15     hash = "sha256-3bnxZFq1/D9ntwfv7O2YU6MnKEDWWIG4zX0e3cgCleg=";
16   };
18   nativeBuildInputs = [
19     setuptools
20     toml
21   ];
23   pythonImportsCheck = [ "functiontrace" ];
25   meta = with lib; {
26     homepage = "https://functiontrace.com";
27     description = "The Python module for Functiontrace";
28     license = licenses.prosperity30;
29     maintainers = with maintainers; [ mathiassven ];
30   };