summary refs log tree commit diff
path: root/pkgs/development/python-modules/pydal/default.nix
blob: f1aacb1c312f2fc8886cf953881f0b14a2efa157 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
{ lib
, buildPythonPackage
, fetchPypi
, python
}:

buildPythonPackage rec {
  pname = "pydal";
  version = "20220213.2";
  format = "setuptools";

  src = fetchPypi {
    inherit pname version;
    sha256 = "sha256-7DBLcHSEkoT8wV6824TGWRLi9vK2t+r1RwwWmRBYD9I=";
  };

  postPatch = ''
    # this test has issues with an import statement
    # rm tests/tags.py
    sed -i '/from .tags import/d' tests/__init__.py

    # this assertion errors without obvious reason
    sed -i '/self.assertEqual(csv0, str(r4))/d' tests/caching.py

    # some sql tests fail against sqlite engine
    sed -i '/from .sql import/d' tests/__init__.py
  '';

  pythonImportsCheck = [ "pydal" ];

  checkPhase = ''
    runHook preCheck
    ${python.interpreter} -m unittest tests
    runHook postCheck
  '';

  meta = with lib; {
    description = "Python Database Abstraction Layer";
    homepage = "https://github.com/web2py/pydal";
    license = with licenses; [ bsd3 ] ;
    maintainers = with maintainers; [ wamserma ];
  };
}