python3Packages.maestral: 1.9.1 -> 1.9.2

This commit is contained in:
Stefan Frijters 2024-03-26 08:41:30 +01:00
parent 790526d284
commit b71bc31129
No known key found for this signature in database
GPG Key ID: 7619A6BC6E7DFA6F

View File

@ -21,13 +21,14 @@
, survey , survey
, typing-extensions , typing-extensions
, watchdog , watchdog
, xattr
, pytestCheckHook , pytestCheckHook
, nixosTests , nixosTests
}: }:
buildPythonPackage rec { buildPythonPackage rec {
pname = "maestral"; pname = "maestral";
version = "1.9.1"; version = "1.9.2";
format = "pyproject"; format = "pyproject";
disabled = pythonOlder "3.8"; disabled = pythonOlder "3.8";
@ -36,7 +37,7 @@ buildPythonPackage rec {
owner = "SamSchott"; owner = "SamSchott";
repo = "maestral"; repo = "maestral";
rev = "refs/tags/v${version}"; rev = "refs/tags/v${version}";
hash = "sha256-ilaKcYVZr0rkExna8WLcO+zLUp24eRRfL5SW+sMCJG0="; hash = "sha256-Bb0yE2OKdlZd6ZsTEWOD+hMuV41fZanesY49L+v4BBE=";
}; };
propagatedBuildInputs = [ propagatedBuildInputs = [
@ -57,6 +58,7 @@ buildPythonPackage rec {
survey survey
typing-extensions typing-extensions
watchdog watchdog
xattr
]; ];
makeWrapperArgs = [ makeWrapperArgs = [
@ -86,6 +88,8 @@ buildPythonPackage rec {
"test_cased_path_candidates" "test_cased_path_candidates"
# AssertionError # AssertionError
"test_locking_multiprocess" "test_locking_multiprocess"
# OSError: [Errno 95] Operation not supported
"test_move_preserves_xattrs"
]; ];
pythonImportsCheck = [ pythonImportsCheck = [