python3Packages.simber: init at 0.2.2
This commit is contained in:
parent
a1e75a9ab4
commit
f05fba8db0
25
pkgs/development/python-modules/simber/default.nix
Normal file
25
pkgs/development/python-modules/simber/default.nix
Normal 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 ];
|
||||
};
|
||||
}
|
@ -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 { };
|
||||
|
Loading…
Reference in New Issue
Block a user