1{ lib, buildPythonPackage, fetchFromGitHub, colorama, pytestCheckHook }:
2
3buildPythonPackage rec {
4 pname = "simber";
5 version = "0.2.3";
6
7 src = fetchFromGitHub {
8 owner = "deepjyoti30";
9 repo = pname;
10 rev = version;
11 sha256 = "04dp9b4s7zb166vlacsaypc6iw1p75azqas1wf0flp570qqf3rkx";
12 };
13
14 propagatedBuildInputs = [ colorama ];
15
16 checkInputs = [ pytestCheckHook ];
17 pythonImportsCheck = [ "simber" ];
18
19 meta = with lib; {
20 description = "Simple, minimal and powerful logger for Python";
21 homepage = "https://github.com/deepjyoti30/simber";
22 license = licenses.mit;
23 maintainers = with maintainers; [ j0hax ];
24 };
25}