nixpkgs/pkgs/development/python-modules/loguru/default.nix

25 lines
823 B
Nix
Raw Normal View History

2020-01-04 09:20:00 +00:00
{ stdenv, buildPythonPackage, fetchPypi, isPy27, colorama, pytestCheckHook }:
2019-07-03 03:20:21 +01:00
buildPythonPackage rec {
pname = "loguru";
2020-06-06 07:47:17 +01:00
version = "0.5.0";
2019-07-03 03:20:21 +01:00
disabled = isPy27;
src = fetchPypi {
inherit pname version;
2020-06-06 07:47:17 +01:00
sha256 = "1e0e6ff59be5e22f863d909ca989e34bb14c21b374f6af45281e603d003dbb96";
2019-07-03 03:20:21 +01:00
};
2020-01-04 09:20:00 +00:00
checkInputs = [ pytestCheckHook colorama ];
2019-07-03 03:20:21 +01:00
2020-01-04 09:20:00 +00:00
disabledTests = [ "test_time_rotation_reopening" "test_file_buffering" ]
2020-01-25 09:30:00 +00:00
++ stdenv.lib.optionals stdenv.isDarwin [ "test_rotation_and_retention" "test_rotation_and_retention_timed_file" "test_renaming" "test_await_complete_inheritance" ];
2020-01-04 09:20:00 +00:00
meta = with stdenv.lib; {
homepage = "https://github.com/Delgan/loguru";
2019-07-03 03:20:21 +01:00
description = "Python logging made (stupidly) simple";
license = licenses.mit;
maintainers = with maintainers; [ jakewaksbaum ];
};
}