1{ lib
2, buildPythonPackage
3, fetchPypi
4, pytestCheckHook
5, FormEncode
6, pastedeploy
7, paste
8, pydispatcher
9}:
10
11buildPythonPackage rec {
12 pname = "SQLObject";
13 version = "3.9.1";
14
15 src = fetchPypi {
16 inherit pname version;
17 sha256 = "45064184decf7f42d386704e5f47a70dee517d3e449b610506e174025f84d921";
18 };
19
20 propagatedBuildInputs = [ FormEncode pastedeploy paste pydispatcher ];
21
22 checkInputs = [ pytestCheckHook ];
23
24 meta = with lib; {
25 description = "Object Relational Manager for providing an object interface to your database";
26 homepage = "http://www.sqlobject.org/";
27 license = licenses.lgpl21;
28 maintainers = with maintainers; [ ];
29 };
30}