summary refs log blame commit diff
path: root/pkgs/development/python-modules/loguru/default.nix
blob: 67134fdfd95ace8fa63cf4fd8ae288512d086df7 (plain) (tree)
1
2
3
4
5
6
7
8
9



                                                                 
                    



                          
                                                                    













                                                          
{ lib, buildPythonPackage, fetchPypi, isPy27, pytest, colorama }:

buildPythonPackage rec {
  pname = "loguru";
  version = "0.3.2";
  
  disabled = isPy27;
  src = fetchPypi {
    inherit pname version;
    sha256 = "0apd3wcjbyhwzgw0fgzzn4dcgy10pqa8f1vf58d4hmszxvyqn4z3";
  };

  checkInputs = [ pytest colorama ];
  checkPhase = ''
    pytest -k 'not test_time_rotation_reopening'
  '';

  meta = with lib; {
    homepage = https://github.com/Delgan/loguru;
    description = "Python logging made (stupidly) simple";
    license = licenses.mit;
    maintainers = with maintainers; [ jakewaksbaum ];
  };
}