pythonPackages.pyramid_beaker: 0.7 -> 0.8, mark as broken

Beaker was updated to 1.8.0 which caused pyramid_beaker to fail tests.
0.8 was released in 2013.
This commit is contained in:
Graham Christensen 2016-04-01 16:48:11 -05:00
parent 2ce26f4f94
commit 5024e03542

View File

@ -7099,11 +7099,11 @@ in modules // {
pyramid_beaker = buildPythonPackage rec { pyramid_beaker = buildPythonPackage rec {
name = "pyramid_beaker-0.7"; name = "pyramid_beaker-0.8";
src = pkgs.fetchurl { src = pkgs.fetchurl {
url = "http://pypi.python.org/packages/source/p/pyramid_beaker/${name}.tar.gz"; url = "http://pypi.python.org/packages/source/p/pyramid_beaker/${name}.tar.gz";
sha256 = "c76578dac3ea717e9ca89c327daf13975987d0b8827d15157319c20614fab74a"; sha256 = "0hflx3qkcdml1mwpq53sz46s7jickpfn0zy0ns2c7j445j66bp3p";
}; };
propagatedBuildInputs = with self; [ beaker pyramid ]; propagatedBuildInputs = with self; [ beaker pyramid ];
@ -7111,6 +7111,7 @@ in modules // {
meta = { meta = {
maintainers = with maintainers; [ iElectric ]; maintainers = with maintainers; [ iElectric ];
platforms = platforms.all; platforms = platforms.all;
broken = true;
}; };
}; };