pythonPackages.blockdiag: 1.5.3 -> 2.0.1
This commit is contained in:
parent
5814d60b51
commit
3cb4a79fcc
@ -1,23 +1,21 @@
|
|||||||
{ stdenv, fetchurl, buildPythonPackage, pep8, nose, unittest2, docutils
|
{ stdenv, buildPythonPackage, fetchFromGitHub
|
||||||
, pillow, webcolors, funcparserlib
|
, setuptools, funcparserlib, pillow, webcolors, reportlab, docutils
|
||||||
}:
|
}:
|
||||||
|
|
||||||
buildPythonPackage rec {
|
buildPythonPackage rec {
|
||||||
pname = "blockdiag";
|
pname = "blockdiag";
|
||||||
version = "1.5.3";
|
version = "2.0.1";
|
||||||
|
|
||||||
src = fetchurl {
|
src = fetchFromGitHub {
|
||||||
url = "https://bitbucket.org/blockdiag/blockdiag/get/${version}.tar.bz2";
|
owner = "blockdiag";
|
||||||
sha256 = "0r0qbmv0ijnqidsgm2rqs162y9aixmnkmzgnzgk52hiy7ydm4k8f";
|
repo = "blockdiag";
|
||||||
|
rev = version;
|
||||||
|
sha256 = "1cvcl66kf4wdh2n4fdk37zk59lp58wd2fhf84n7pbn0lilyksk5x";
|
||||||
};
|
};
|
||||||
|
|
||||||
buildInputs = [ pep8 nose unittest2 docutils ];
|
propagatedBuildInputs = [ setuptools funcparserlib pillow webcolors reportlab docutils ];
|
||||||
|
|
||||||
propagatedBuildInputs = [ pillow webcolors funcparserlib ];
|
# require network and fail
|
||||||
|
|
||||||
# One test fails:
|
|
||||||
# ...
|
|
||||||
# FAIL: test_auto_font_detection (blockdiag.tests.test_boot_params.TestBootParams)
|
|
||||||
doCheck = false;
|
doCheck = false;
|
||||||
|
|
||||||
meta = with stdenv.lib; {
|
meta = with stdenv.lib; {
|
||||||
@ -25,6 +23,6 @@ buildPythonPackage rec {
|
|||||||
homepage = "http://blockdiag.com/";
|
homepage = "http://blockdiag.com/";
|
||||||
license = licenses.asl20;
|
license = licenses.asl20;
|
||||||
platforms = platforms.unix;
|
platforms = platforms.unix;
|
||||||
maintainers = with maintainers; [ bjornfor ];
|
maintainers = with maintainers; [ bjornfor SuperSandro2000 ];
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
Loading…
x
Reference in New Issue
Block a user