blob: 505c5f14d9e848676544c4bd7063c1ffec01a8dd (
about) (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
|
{
lib,
buildPythonPackage,
fetchPypi,
setuptools,
toml,
}:
buildPythonPackage rec {
pname = "functiontrace";
version = "0.3.10";
format = "pyproject";
src = fetchPypi {
inherit pname version;
hash = "sha256-E2MNp3wKb9FEjEQK/vL/XBfScPuAwbWV5JeA9+ujckY=";
};
nativeBuildInputs = [
setuptools
toml
];
pythonImportsCheck = [ "functiontrace" ];
meta = with lib; {
homepage = "https://functiontrace.com";
description = "Python module for Functiontrace";
license = licenses.prosperity30;
maintainers = with maintainers; [ mathiassven ];
};
}
|