pythonPackges.beaker: 1.7.0 -> 1.8.0

This commit is contained in:
Lancelot SIX 2016-03-21 22:19:31 +01:00
parent 41729a9074
commit 7be460d54c

View File

@ -1640,27 +1640,32 @@ in modules // {
}); });
beaker = buildPythonPackage rec { beaker = buildPythonPackage rec {
name = "Beaker-1.7.0"; name = "Beaker-${version}";
version = "1.8.0";
disabled = isPy3k; # The pypy release do not contains the tests
src = pkgs.fetchFromGitHub {
src = pkgs.fetchurl { owner = "bbangert";
url = "http://pypi.python.org/packages/source/B/Beaker/${name}.tar.gz"; repo = "beaker";
sha256 = "0vv4y22b3ly1212n9nnhgvc8yz32adlfl7w7s1wj0i5srpjcgvlq"; rev = "${version}";
sha256 = "17yfr7a307n8rdl09was4j60xqk2s0hk0hywdkigrpj4qnw0is7g";
}; };
buildInputs = buildInputs =
[ self.sqlalchemy7 [ self.nose
self.pycryptopp
self.nose
self.mock self.mock
self.webtest self.webtest
]; ];
propagatedBuildInputs = [
# http://hydra.nixos.org/build/4511591/log/raw self.sqlalchemy
doCheck = false; self.pycrypto
] ++ optionals (isPy26 || isPy27) [
self.funcsigs
self.pycryptopp
];
meta = { meta = {
description = "A Session and Caching library with WSGI Middleware";
maintainers = with maintainers; [ garbas iElectric ]; maintainers = with maintainers; [ garbas iElectric ];
platforms = platforms.all; platforms = platforms.all;
}; };