python3Packages.simber: init at 0.2.2

This commit is contained in:
Johannes Arnold 2021-06-15 23:41:28 +02:00
parent a1e75a9ab4
commit f05fba8db0
2 changed files with 27 additions and 0 deletions

View file

@ -0,0 +1,25 @@
{ lib, buildPythonPackage, fetchFromGitHub, colorama, pytestCheckHook }:
buildPythonPackage rec {
pname = "simber";
version = "0.2.2";
src = fetchFromGitHub {
owner = "deepjyoti30";
repo = pname;
rev = version;
sha256 = "0ksc2m61j5ijj0sq6kkc0hhkmfy9f51h9z3cl2sf8g6wbr9vc47h";
};
propagatedBuildInputs = [ colorama ];
checkInputs = [ pytestCheckHook ];
pythonImportsCheck = [ "simber" ];
meta = with lib; {
description = "Simple, minimal and powerful logger for Python";
homepage = "https://github.com/deepjyoti30/simber";
license = licenses.mit;
maintainers = with maintainers; [ j0hax ];
};
}

View file

@ -7769,6 +7769,8 @@ in {
simanneal = callPackage ../development/python-modules/simanneal { };
simber = callPackage ../development/python-modules/simber { };
simpleaudio = callPackage ../development/python-modules/simpleaudio { };
simplebayes = callPackage ../development/python-modules/simplebayes { };