biome: 1.9.2 -> 1.9.3 (#349335)
[NixPkgs.git] / pkgs / development / python-modules / timy / default.nix
blob3fb4096bb51968541463a7469c2849b7737dcff5
1 { lib
2 , buildPythonPackage
3 , fetchFromGitHub
4 , pytestCheckHook
5 }:
7 buildPythonPackage rec {
8   pname = "timy";
9   version = "0.4.2";
11   src = fetchFromGitHub {
12     owner = "ramonsaraiva";
13     repo = "timy";
14     rev = "36a97e55f058de002a0da4f2a8e18c00d944821c";
15     hash = "sha256-4Opaph8Q1tQH+C/Epur8AA26RN4vO944DjCg0zDJqxM=";
16   };
18   nativeCheckInputs = [
19     pytestCheckHook
20   ];
22   meta = with lib; {
23     description = "Minimalist measurement of python code time";
24     homepage = "https://github.com/ramonsaraiva/timy";
25     license = licenses.mit;
26     maintainers = with maintainers; [ flandweber ];
27   };