Skip to content

Commit

Permalink
pythonPackages.sqlobject: 3.0.0 -> 3.3.0
Browse files Browse the repository at this point in the history
  • Loading branch information
langston-barrett committed Jul 25, 2017
1 parent cfbdcef commit 05d661a
Showing 1 changed file with 15 additions and 6 deletions.
21 changes: 15 additions & 6 deletions pkgs/top-level/python-packages.nix
Original file line number Diff line number Diff line change
Expand Up @@ -21862,14 +21862,23 @@ in {
};

sqlobject = buildPythonPackage rec {
version = "3.0.0";
name = "sqlobject-${version}";
src = pkgs.fetchurl {
url = "mirror://pypi/S/SQLObject/SQLObject-${version}.tar.gz";
sha256 = "15g3g7f4yiyplqf54px1dsnmrw3jb7xwx97z8qzgp9ijmm5vpr8r";
pname = "SQLObject";
version = "3.3.0";
name = "${pname}-${version}";

src = fetchPypi {
inherit pname version;
sha256 = "0p2dxrxh7xrv5yys09v5z95d0z40w22aq3xc01ghdidd7hr79xy9";
};

propagatedBuildInputs = with self; [ pydispatcher FormEncode ];
checkInputs = with self; [ pytest ];

propagatedBuildInputs = with self; [
FormEncode
PasteDeploy
paste
pydispatcher
];

meta = {
description = "Object Relational Manager for providing an object interface to your database";
Expand Down

0 comments on commit 05d661a

Please sign in to comment.