mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-10-31 22:51:22 +00:00
python-actdiag: bump 0.4.3 -> 0.5.1
Changes: 0.5.1 (2013-10-22) Fix bugs 0.5.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 for one test, so continue having it disabled.)
This commit is contained in:
parent
36612c7614
commit
6b2a7d0aa4
@ -159,18 +159,19 @@ pythonPackages = modules // import ./python-packages-generated.nix {
|
||||
|
||||
|
||||
actdiag = buildPythonPackage rec {
|
||||
name = "actdiag-0.4.3";
|
||||
name = "actdiag-0.5.1";
|
||||
|
||||
src = fetchurl {
|
||||
url = "https://pypi.python.org/packages/source/a/actdiag/${name}.tar.gz";
|
||||
md5 = "428aaab849f04668fa12388b964a56ea";
|
||||
md5 = "171c47bc1f70e5fadfffd9df0c3157be";
|
||||
};
|
||||
|
||||
buildInputs = [ pep8 nose unittest2 docutils ];
|
||||
|
||||
propagatedBuildInputs = [ blockdiag ];
|
||||
|
||||
# One test fails, because of missing simple.diag input file
|
||||
# One test fails:
|
||||
# UnicodeEncodeError: 'ascii' codec can't encode character u'\u3042' in position 0: ordinal not in range(128)
|
||||
doCheck = false;
|
||||
|
||||
meta = with stdenv.lib; {
|
||||
|
Loading…
Reference in New Issue
Block a user