summary refs log tree commit diff
path: root/pkgs
diff options
context:
space:
mode:
authorMario Rodas <marsam@users.noreply.github.com>2020-01-25 08:21:09 -0500
committerGitHub <noreply@github.com>2020-01-25 08:21:09 -0500
commitb772ca4a4d2d1da57885edcab99f8d47ad109783 (patch)
tree212ad0efa99f32199c97268becdd2e913e7304f7 /pkgs
parent1ee3c7b405f669dea3328f71249e7ef74823fc09 (diff)
parentc6e8760b4a2eb64cfe2c6b9fdc758bbdc12ab349 (diff)
downloadnixpkgs-b772ca4a4d2d1da57885edcab99f8d47ad109783.tar
nixpkgs-b772ca4a4d2d1da57885edcab99f8d47ad109783.tar.gz
nixpkgs-b772ca4a4d2d1da57885edcab99f8d47ad109783.tar.bz2
nixpkgs-b772ca4a4d2d1da57885edcab99f8d47ad109783.tar.lz
nixpkgs-b772ca4a4d2d1da57885edcab99f8d47ad109783.tar.xz
nixpkgs-b772ca4a4d2d1da57885edcab99f8d47ad109783.tar.zst
nixpkgs-b772ca4a4d2d1da57885edcab99f8d47ad109783.zip
Merge pull request #78462 from marsam/update-python-loguru
pythonPackages.loguru: 0.4.0 -> 0.4.1
Diffstat (limited to 'pkgs')
-rw-r--r--pkgs/development/python-modules/loguru/default.nix6
1 files changed, 3 insertions, 3 deletions
diff --git a/pkgs/development/python-modules/loguru/default.nix b/pkgs/development/python-modules/loguru/default.nix
index ceb9f841a46..c12084f008e 100644
--- a/pkgs/development/python-modules/loguru/default.nix
+++ b/pkgs/development/python-modules/loguru/default.nix
@@ -2,18 +2,18 @@
 
 buildPythonPackage rec {
   pname = "loguru";
-  version = "0.4.0";
+  version = "0.4.1";
   
   disabled = isPy27;
   src = fetchPypi {
     inherit pname version;
-    sha256 = "d5ddf363b7e0e562652f283f74a89bf35601baf16b70f2cd2736a2f8c6638748";
+    sha256 = "a6101fd435ac89ba5205a105a26a6ede9e4ddbb4408a6e167852efca47806d11";
   };
 
   checkInputs = [ pytestCheckHook colorama ];
 
   disabledTests = [ "test_time_rotation_reopening" "test_file_buffering" ]
-    ++ stdenv.lib.optionals stdenv.isDarwin [ "test_rotation_and_retention" "test_rotation_and_retention_timed_file" "test_renaming" ];
+    ++ stdenv.lib.optionals stdenv.isDarwin [ "test_rotation_and_retention" "test_rotation_and_retention_timed_file" "test_renaming" "test_await_complete_inheritance" ];
 
   meta = with stdenv.lib; {
     homepage = https://github.com/Delgan/loguru;