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

27 lines
926 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-07-31 09:56:41 +01:00
version = "0.5.1";
2020-08-25 03:07:09 +01:00
2019-07-03 03:20:21 +01:00
disabled = isPy27;
src = fetchPypi {
inherit pname version;
2020-07-31 09:56:41 +01:00
sha256 = "70201d5fce26da89b7a5f168caa2bb674e06b969829f56737db1d6472e53e7c3";
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
pytestFlagsArray = stdenv.lib.optionals stdenv.isDarwin [ "--ignore=tests/test_multiprocessing.py" ];
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 ];
};
}