1
0
Fork 1
mirror of https://github.com/NixOS/nixpkgs.git synced 2024-09-11 15:08:33 +01:00

python3Packages.biplist: diasble failing tests

This commit is contained in:
Fabian Affolter 2021-09-23 20:46:12 +02:00
parent ea8ff5a129
commit beea07475e

View file

@ -1,10 +1,12 @@
{ lib, buildPythonPackage, fetchPypi
, pytest
{ lib
, buildPythonPackage
, fetchPypi
, pytestCheckHook
}:
buildPythonPackage rec {
version = "1.0.3";
pname = "biplist";
version = "1.0.3";
src = fetchPypi {
inherit pname version;
@ -12,12 +14,18 @@ buildPythonPackage rec {
};
checkInputs = [
pytest
pytestCheckHook
];
checkPhase = ''
pytest
'';
disabledTests = [
# Failing tests
"testConvertToXMLPlistWithData"
"testWriteToFile"
"testXMLPlist"
"testXMLPlistWithData"
];
pythonImportsCheck = [ "biplist" ];
meta = with lib; {
homepage = "https://bitbucket.org/wooster/biplist/src/master/";