Merge pull request #153602 from fabaff/fix-sqlobject
python3Packages.sqlobject: disable failing test
This commit is contained in:
commit
67bec37db0
1 changed files with 22 additions and 4 deletions
|
@ -9,17 +9,35 @@
|
|||
}:
|
||||
|
||||
buildPythonPackage rec {
|
||||
pname = "SQLObject";
|
||||
pname = "sqlobject";
|
||||
version = "3.9.1";
|
||||
format = "setuptools";
|
||||
|
||||
src = fetchPypi {
|
||||
inherit pname version;
|
||||
pname = "SQLObject";
|
||||
inherit version;
|
||||
sha256 = "45064184decf7f42d386704e5f47a70dee517d3e449b610506e174025f84d921";
|
||||
};
|
||||
|
||||
propagatedBuildInputs = [ FormEncode pastedeploy paste pydispatcher ];
|
||||
propagatedBuildInputs = [
|
||||
FormEncode
|
||||
paste
|
||||
pastedeploy
|
||||
pydispatcher
|
||||
];
|
||||
|
||||
checkInputs = [ pytestCheckHook ];
|
||||
checkInputs = [
|
||||
pytestCheckHook
|
||||
];
|
||||
|
||||
disabledTests = [
|
||||
# https://github.com/sqlobject/sqlobject/issues/179
|
||||
"test_fail"
|
||||
];
|
||||
|
||||
pythonImportsCheck = [
|
||||
"sqlobject"
|
||||
];
|
||||
|
||||
meta = with lib; {
|
||||
description = "Object Relational Manager for providing an object interface to your database";
|
||||
|
|
Loading…
Reference in a new issue