buildPythonPackage: fix standalone applications using it

This commit is contained in:
Domen Kožar
2015-11-20 13:48:30 +01:00
parent 99a64da600
commit 704c8bab41
22 changed files with 88 additions and 216 deletions

View File

@@ -8,9 +8,11 @@ buildPythonPackage rec {
sha256 = "6a0b7b1fe2b046875456e14eda3e42430e493bf2251a64481cf4fd1a1e21a80e";
};
buildInputs = [ pythonPackages.nose pythonPackages.minimock ];
buildInputs = with pythonPackages; [ nose minimock ];
checkPhase = "make test";
checkPhase = ''
nosetests
'';
meta = {
description = "A gpodder.net client library";

View File

@@ -31,19 +31,6 @@ index 416df5a..f07c9ec 100644
.. changelog::
:version: 0.7.10
diff --git a/lib/sqlalchemy/__init__.py b/lib/sqlalchemy/__init__.py
index 9a21a70..6523ccb 100644
--- a/lib/sqlalchemy/__init__.py
+++ b/lib/sqlalchemy/__init__.py
@@ -120,7 +120,7 @@
__all__ = sorted(name for name, obj in locals().items()
if not (name.startswith('_') or inspect.ismodule(obj)))
-__version__ = '0.7.10'
+__version__ = '0.7.11'
del inspect, sys
diff --git a/test/engine/test_execute.py b/test/engine/test_execute.py
index 69b94f1..a37f684 100644
--- a/test/engine/test_execute.py