1{
2 lib,
3 buildPythonPackage,
4 fetchFromGitHub,
5 pytestCheckHook,
6}:
7
8buildPythonPackage {
9 pname = "timy";
10 version = "0.4.2";
11
12 src = fetchFromGitHub {
13 owner = "ramonsaraiva";
14 repo = "timy";
15 rev = "36a97e55f058de002a0da4f2a8e18c00d944821c";
16 hash = "sha256-4Opaph8Q1tQH+C/Epur8AA26RN4vO944DjCg0zDJqxM=";
17 };
18
19 nativeCheckInputs = [
20 pytestCheckHook
21 ];
22
23 meta = with lib; {
24 description = "Minimalist measurement of python code time";
25 homepage = "https://github.com/ramonsaraiva/timy";
26 license = licenses.mit;
27 maintainers = with maintainers; [ flandweber ];
28 };
29}