Clone of https://github.com/NixOS/nixpkgs.git (to stress-test knotserver)
at 21.05 29 lines 610 B view raw
1{ lib 2, buildPythonPackage 3, fetchPypi 4, pytest 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 checkInputs = [ pytest ]; 21 propagatedBuildInputs = [ FormEncode PasteDeploy paste pydispatcher ]; 22 23 meta = with lib; { 24 description = "Object Relational Manager for providing an object interface to your database"; 25 homepage = "http://www.sqlobject.org/"; 26 license = licenses.lgpl21; 27 }; 28 29}