depot/third_party/nixpkgs/pkgs/development/python-modules/timy/default.nix
Default email bcb2f287e1 Project import generated by Copybara.
GitOrigin-RevId: d603719ec6e294f034936c0d0dc06f689d91b6c3
2024-06-20 20:27:18 +05:30

28 lines
608 B
Nix

{ lib
, buildPythonPackage
, fetchFromGitHub
, pytestCheckHook
}:
buildPythonPackage rec {
pname = "timy";
version = "0.4.2";
src = fetchFromGitHub {
owner = "ramonsaraiva";
repo = "timy";
rev = "36a97e55f058de002a0da4f2a8e18c00d944821c";
hash = "sha256-4Opaph8Q1tQH+C/Epur8AA26RN4vO944DjCg0zDJqxM=";
};
nativeCheckInputs = [
pytestCheckHook
];
meta = with lib; {
description = "Minimalist measurement of python code time";
homepage = "https://github.com/ramonsaraiva/timy";
license = licenses.mit;
maintainers = with maintainers; [ flandweber ];
};
}