forked from mirrors/nixpkgs
Merge pull request #230819 from fabaff/webdav4-fix
python310Packages.webdav4: disable failing tests
This commit is contained in:
commit
53925dfedf
|
@ -24,7 +24,7 @@ buildPythonPackage rec {
|
||||||
src = fetchFromGitHub {
|
src = fetchFromGitHub {
|
||||||
owner = "skshetry";
|
owner = "skshetry";
|
||||||
repo = pname;
|
repo = pname;
|
||||||
rev = "v${version}";
|
rev = "refs/tags/v${version}";
|
||||||
hash = "sha256-Le/gABaUxMmSW2SjgucsBKqjxOq1h9UCAWl5YyUsCPk=";
|
hash = "sha256-Le/gABaUxMmSW2SjgucsBKqjxOq1h9UCAWl5YyUsCPk=";
|
||||||
};
|
};
|
||||||
|
|
||||||
|
@ -76,6 +76,10 @@ buildPythonPackage rec {
|
||||||
"test_open"
|
"test_open"
|
||||||
"test_open_binary"
|
"test_open_binary"
|
||||||
"test_close_connection_if_nothing_is_read"
|
"test_close_connection_if_nothing_is_read"
|
||||||
|
# Assertion error due to comparing output
|
||||||
|
"test_cp_cli"
|
||||||
|
"test_mv_cli"
|
||||||
|
"test_sync_remote_to_local"
|
||||||
];
|
];
|
||||||
|
|
||||||
disabledTestPaths = [
|
disabledTestPaths = [
|
||||||
|
@ -87,6 +91,7 @@ buildPythonPackage rec {
|
||||||
meta = with lib; {
|
meta = with lib; {
|
||||||
description = "Library for interacting with WebDAV";
|
description = "Library for interacting with WebDAV";
|
||||||
homepage = "https://skshetry.github.io/webdav4/";
|
homepage = "https://skshetry.github.io/webdav4/";
|
||||||
|
changelog = "https://github.com/skshetry/webdav4/releases/tag/v${version}";
|
||||||
license = with licenses; [ mit ];
|
license = with licenses; [ mit ];
|
||||||
maintainers = with maintainers; [ fab ];
|
maintainers = with maintainers; [ fab ];
|
||||||
};
|
};
|
||||||
|
|
Loading…
Reference in a new issue