Merge pull request #119126 from fabaff/pycomfoconnect
[NixPkgs.git] / pkgs / development / python-modules / colorlog / default.nix
blob39b64e4faf3ed6ed300b124a8a3f1c7c2cb96630
1 { lib
2 , buildPythonPackage
3 , fetchPypi
4 , pytestCheckHook
5 }:
7 buildPythonPackage rec {
8   pname = "colorlog";
9   version = "5.0.1";
11   src = fetchPypi {
12     inherit pname version;
13     sha256 = "sha256-8XwBOgaWKwL0RJ7gfP2+ayh98p78LJoVFbSjdvTliOo=";
14   };
16   checkInputs = [ pytestCheckHook ];
18   pythonImportsCheck = [ "colorlog" ];
20   meta = with lib; {
21     description = "Log formatting with colors";
22     homepage = "https://github.com/borntyping/python-colorlog";
23     license = licenses.mit;
24     maintainers = with maintainers; [ dotlambda ];
25   };