Clone of https://github.com/NixOS/nixpkgs.git (to stress-test knotserver)

Merge pull request #139211 from fabaff/fix-biplist

authored by

Sandro and committed by
GitHub
23ca9e24 962b3495

+15 -7
+15 -7
pkgs/development/python-modules/biplist/default.nix
··· 1 - { lib, buildPythonPackage, fetchPypi 2 - , pytest 3 }: 4 5 buildPythonPackage rec { 6 - version = "1.0.3"; 7 pname = "biplist"; 8 9 src = fetchPypi { 10 inherit pname version; ··· 12 }; 13 14 checkInputs = [ 15 - pytest 16 ]; 17 18 - checkPhase = '' 19 - pytest 20 - ''; 21 22 meta = with lib; { 23 homepage = "https://bitbucket.org/wooster/biplist/src/master/";
··· 1 + { lib 2 + , buildPythonPackage 3 + , fetchPypi 4 + , pytestCheckHook 5 }: 6 7 buildPythonPackage rec { 8 pname = "biplist"; 9 + version = "1.0.3"; 10 11 src = fetchPypi { 12 inherit pname version; ··· 14 }; 15 16 checkInputs = [ 17 + pytestCheckHook 18 ]; 19 20 + disabledTests = [ 21 + # Failing tests 22 + "testConvertToXMLPlistWithData" 23 + "testWriteToFile" 24 + "testXMLPlist" 25 + "testXMLPlistWithData" 26 + ]; 27 + 28 + pythonImportsCheck = [ "biplist" ]; 29 30 meta = with lib; { 31 homepage = "https://bitbucket.org/wooster/biplist/src/master/";