blob: dbbb45f88381df545de3893f83bd8573e0f4d1fd (
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
33
34
35
36
37
38
39
40
41
|
{
lib,
buildPythonPackage,
fetchPypi,
setuptools,
wheel,
setuptools-scm,
}:
buildPythonPackage rec {
pname = "keke";
version = "0.2.0";
pyproject = true;
src = fetchPypi {
inherit pname version;
hash = "sha256-H0U6DgZOHKtkPnF/xSNqBGPnD4BViP0JBKpehKKTTzs=";
};
installCheckPhase = ''
python -m keke.tests
'';
nativeBuildInputs = [ setuptools-scm ];
build-system = [
setuptools
wheel
];
pythonImportsCheck = [
"keke"
];
meta = {
description = "Easy profiling in chrome trace format";
homepage = "https://pypi.org/project/keke/";
license = lib.licenses.mit;
maintainers = with lib.maintainers; [ matthewcroughan ];
};
}
|