nixpkgs/pkgs/development/python-modules/blockdiag/default.nix
2024-03-29 11:49:42 +01:00

81 lines
1.6 KiB
Nix

{ lib
, buildPythonPackage
, docutils
, ephem
, fetchFromGitHub
, fetchpatch
, funcparserlib
, pillow
, pynose
, pytestCheckHook
, pythonOlder
, reportlab
, setuptools
, webcolors
}:
buildPythonPackage rec {
pname = "blockdiag";
version = "3.0.0";
pyproject = true;
disabled = pythonOlder "3.7";
src = fetchFromGitHub {
owner = "blockdiag";
repo = "blockdiag";
rev = "refs/tags/${version}";
hash = "sha256-j8FoNUIJJOaahaol1MRPyY2jcPCEIlaAD4bmM2QKFFI=";
};
patches = [
# https://github.com/blockdiag/blockdiag/pull/179
(fetchpatch {
name = "pillow-10-compatibility.patch";
url = "https://github.com/blockdiag/blockdiag/commit/20d780cad84e7b010066cb55f848477957870165.patch";
hash = "sha256-t1zWFzAsLL2EUa0nD4Eui4Y5AhAZLRmp/yC9QpzzeUA=";
})
];
build-system = [
setuptools
];
dependencies = [
docutils
funcparserlib
pillow
reportlab
webcolors
];
nativeCheckInputs = [
ephem
pynose
pytestCheckHook
];
pytestFlagsArray = [
"src/blockdiag/tests/"
];
disabledTests = [
# Test require network access
"test_app_cleans_up_images"
];
pythonImportsCheck = [
"blockdiag"
];
meta = with lib; {
description = "Generate block-diagram image from spec-text file (similar to Graphviz)";
homepage = "http://blockdiag.com/";
changelog = "https://github.com/blockdiag/blockdiag/blob/${version}/CHANGES.rst";
license = licenses.asl20;
maintainers = with maintainers; [ bjornfor ];
mainProgram = "blockdiag";
platforms = platforms.unix;
};
}