about summary refs log tree commit diff
path: root/pkgs
diff options
context:
space:
mode:
authorGraham Christensen <graham@grahamc.com>2016-04-01 16:48:11 -0500
committerGraham Christensen <graham@grahamc.com>2016-04-04 07:42:38 -0500
commit5024e035428960b6177ab9c90879eb648f41ffa2 (patch)
tree30b022b389d1867aaef7772d30281b37b1ca8368 /pkgs
parent2ce26f4f94b6a80efe3a0daf448c76daaeb1b73a (diff)
downloadnixlib-5024e035428960b6177ab9c90879eb648f41ffa2.tar
nixlib-5024e035428960b6177ab9c90879eb648f41ffa2.tar.gz
nixlib-5024e035428960b6177ab9c90879eb648f41ffa2.tar.bz2
nixlib-5024e035428960b6177ab9c90879eb648f41ffa2.tar.lz
nixlib-5024e035428960b6177ab9c90879eb648f41ffa2.tar.xz
nixlib-5024e035428960b6177ab9c90879eb648f41ffa2.tar.zst
nixlib-5024e035428960b6177ab9c90879eb648f41ffa2.zip
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.
Diffstat (limited to 'pkgs')
-rw-r--r--pkgs/top-level/python-packages.nix5
1 files changed, 3 insertions, 2 deletions
diff --git a/pkgs/top-level/python-packages.nix b/pkgs/top-level/python-packages.nix
index e3b903471147..f55d60a21ba5 100644
--- a/pkgs/top-level/python-packages.nix
+++ b/pkgs/top-level/python-packages.nix
@@ -7099,11 +7099,11 @@ in modules // {
 
 
   pyramid_beaker = buildPythonPackage rec {
-    name = "pyramid_beaker-0.7";
+    name = "pyramid_beaker-0.8";
 
     src = pkgs.fetchurl {
       url = "http://pypi.python.org/packages/source/p/pyramid_beaker/${name}.tar.gz";
-      sha256 = "c76578dac3ea717e9ca89c327daf13975987d0b8827d15157319c20614fab74a";
+      sha256 = "0hflx3qkcdml1mwpq53sz46s7jickpfn0zy0ns2c7j445j66bp3p";
     };
 
     propagatedBuildInputs = with self; [ beaker pyramid ];
@@ -7111,6 +7111,7 @@ in modules // {
     meta = {
       maintainers = with maintainers; [ iElectric ];
       platforms = platforms.all;
+      broken = true;
     };
   };