python-seqdiag: bump 0.8.2 -> 0.9.0

Changes:
  0.9.0 (2013-10-05)
  Support python 3.2 and 3.3 (thanks to @masayuko)
  Drop supports for python 2.4 and 2.5
  Replace dependency: PIL -> Pillow

(The test phase still fails, so continue having it disabled.)
This commit is contained in:
Bjørn Forsman 2013-11-24 13:11:34 +01:00
parent be0a7c1238
commit 3f21d7c334

View file

@ -5684,20 +5684,20 @@ pythonPackages = modules // import ./python-packages-generated.nix {
seqdiag = buildPythonPackage rec {
name = "seqdiag-0.8.2";
name = "seqdiag-0.9.0";
src = fetchurl {
url = "https://pypi.python.org/packages/source/s/seqdiag/${name}.tar.gz";
md5 = "61b3da29b5efaa89701b4db6d2d4d5fa";
md5 = "92946555ce219df18002e6c88b4055d3";
};
buildInputs = [ pep8 nose unittest2 docutils ];
propagatedBuildInputs = [ blockdiag ];
# Some tests fail (because of missing input files?):
# Tests fail:
# ...
# IOError: [Errno 2] No such file or directory: '/tmp/nix-build-python2.7-seqdiag-0.8.2.drv-0/seqdiag-0.8.2/src/seqdiag/tests/diagrams/separators.diag'
# ERROR: Failure: OSError ([Errno 2] No such file or directory: '/tmp/nix-build-python2.7-seqdiag-0.9.0.drv-0/seqdiag-0.9.0/src/seqdiag/tests/diagrams/')
doCheck = false;
meta = with stdenv.lib; {