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