lol

Merge pull request #203092 from fabaff/maestral-fix

python310Packages.maestral: disable failing test

authored by

Mario Rodas and committed by
GitHub
9d801103 9dc2c801

+9 -5
+9 -5
pkgs/development/python-modules/maestral/default.nix
··· 27 27 buildPythonPackage rec { 28 28 pname = "maestral"; 29 29 version = "1.6.3"; 30 - disabled = pythonOlder "3.6"; 30 + format = "pyproject"; 31 + 32 + disabled = pythonOlder "3.7"; 31 33 32 34 src = fetchFromGitHub { 33 35 owner = "SamSchott"; 34 36 repo = "maestral"; 35 37 rev = "refs/tags/v${version}"; 36 - sha256 = "sha256-JVzaWwdHAn5JOruLEN9Z2/5eV1oh3J2NQffNI3RqYfA="; 38 + hash = "sha256-JVzaWwdHAn5JOruLEN9Z2/5eV1oh3J2NQffNI3RqYfA="; 37 39 }; 38 - 39 - format = "pyproject"; 40 40 41 41 propagatedBuildInputs = [ 42 42 click ··· 83 83 "test_filestatus" 84 84 "test_path_exists_case_insensitive" 85 85 "test_cased_path_candidates" 86 + # AssertionError 87 + "test_locking_multiprocess" 86 88 ]; 87 89 88 - pythonImportsCheck = [ "maestral" ]; 90 + pythonImportsCheck = [ 91 + "maestral" 92 + ]; 89 93 90 94 passthru.tests.maestral = nixosTests.maestral; 91 95