2022-01-25 03:21:06 +00:00
|
|
|
{ lib
|
|
|
|
, buildPythonPackage
|
2021-10-17 09:34:42 +00:00
|
|
|
, fetchPypi
|
2023-11-16 04:20:00 +00:00
|
|
|
, pytestCheckHook
|
|
|
|
, pythonOlder
|
|
|
|
, setuptools
|
2021-10-17 09:34:42 +00:00
|
|
|
}:
|
|
|
|
|
|
|
|
buildPythonPackage rec {
|
|
|
|
pname = "pydal";
|
2024-01-02 11:29:13 +00:00
|
|
|
version = "20231114.3";
|
2023-11-16 04:20:00 +00:00
|
|
|
format = "pyproject";
|
|
|
|
|
|
|
|
disabled = pythonOlder "3.7";
|
2021-10-17 09:34:42 +00:00
|
|
|
|
|
|
|
src = fetchPypi {
|
|
|
|
inherit pname version;
|
2024-01-02 11:29:13 +00:00
|
|
|
hash = "sha256-xC0W/Knju205mu+yQ0wOcIYu4Tx1Q3hS9CGSBDLuX7E=";
|
2021-10-17 09:34:42 +00:00
|
|
|
};
|
|
|
|
|
2023-11-16 04:20:00 +00:00
|
|
|
nativeBuildInputs = [
|
|
|
|
setuptools
|
|
|
|
];
|
|
|
|
|
|
|
|
nativeCheckInputs = [
|
|
|
|
pytestCheckHook
|
|
|
|
];
|
|
|
|
|
|
|
|
pytestFlagsArray = [
|
|
|
|
"tests/*.py"
|
|
|
|
# these tests already seem to be broken on the upstream
|
|
|
|
"--deselect=tests/nosql.py::TestFields::testRun"
|
|
|
|
"--deselect=tests/nosql.py::TestSelect::testGroupByAndDistinct"
|
|
|
|
"--deselect=tests/nosql.py::TestExpressions::testOps"
|
|
|
|
"--deselect=tests/nosql.py::TestExpressions::testRun"
|
|
|
|
"--deselect=tests/nosql.py::TestImportExportUuidFields::testRun"
|
|
|
|
"--deselect=tests/nosql.py::TestConnection::testRun"
|
|
|
|
"--deselect=tests/validation.py::TestValidateAndInsert::testRun"
|
|
|
|
"--deselect=tests/validation.py::TestValidateUpdateInsert::testRun"
|
|
|
|
"--deselect=tests/validators.py::TestValidators::test_IS_IN_DB"
|
|
|
|
];
|
|
|
|
|
|
|
|
pythonImportsCheck = ["pydal"];
|
2021-10-17 09:34:42 +00:00
|
|
|
|
2022-01-25 03:21:06 +00:00
|
|
|
meta = with lib; {
|
|
|
|
description = "Python Database Abstraction Layer";
|
2021-10-17 09:34:42 +00:00
|
|
|
homepage = "https://github.com/web2py/pydal";
|
2022-01-25 03:21:06 +00:00
|
|
|
license = with licenses; [ bsd3 ] ;
|
|
|
|
maintainers = with maintainers; [ wamserma ];
|
2021-10-17 09:34:42 +00:00
|
|
|
};
|
|
|
|
}
|