30 lines
620 B
Nix
30 lines
620 B
Nix
{ stdenv
|
|
, buildPythonPackage
|
|
, fetchPypi
|
|
, pytest
|
|
, FormEncode
|
|
, PasteDeploy
|
|
, paste
|
|
, pydispatcher
|
|
}:
|
|
|
|
buildPythonPackage rec {
|
|
pname = "SQLObject";
|
|
version = "3.7.2";
|
|
|
|
src = fetchPypi {
|
|
inherit pname version;
|
|
sha256 = "8aee27279231bae59e95b299e253b27ac2d78934989f4ccbe317c7b25faab6de";
|
|
};
|
|
|
|
checkInputs = [ pytest ];
|
|
propagatedBuildInputs = [ FormEncode PasteDeploy paste pydispatcher ];
|
|
|
|
meta = with stdenv.lib; {
|
|
description = "Object Relational Manager for providing an object interface to your database";
|
|
homepage = "http://www.sqlobject.org/";
|
|
license = licenses.lgpl21;
|
|
};
|
|
|
|
}
|