forked from mirrors/nixpkgs
60 lines
1.3 KiB
Nix
60 lines
1.3 KiB
Nix
{ lib
|
|
, buildPythonPackage
|
|
, pythonOlder
|
|
, fetchFromGitHub
|
|
, jinja2
|
|
, poetry-core
|
|
, round
|
|
, graphviz
|
|
, inkscape
|
|
, imagemagick
|
|
, pytestCheckHook
|
|
}:
|
|
|
|
buildPythonPackage rec {
|
|
pname = "diagrams";
|
|
version = "0.22.0";
|
|
format = "pyproject";
|
|
disabled = pythonOlder "3.6";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "mingrammer";
|
|
repo = pname;
|
|
rev = "refs/tags/v${version}";
|
|
sha256 = "sha256-LUuClvBJeOxtrg+S+lYLpP7T1RXCy5dNjFYQO3H54QE=";
|
|
};
|
|
|
|
postPatch = ''
|
|
substituteInPlace pyproject.toml \
|
|
--replace 'graphviz = ">=0.13.2,<0.20.0"' 'graphviz = "*"'
|
|
'';
|
|
|
|
preConfigure = ''
|
|
patchShebangs autogen.sh
|
|
./autogen.sh
|
|
'';
|
|
|
|
patches = [
|
|
# The build-system section is missing
|
|
./build_poetry.patch
|
|
./remove-black-requirement.patch
|
|
];
|
|
|
|
checkInputs = [ pytestCheckHook ];
|
|
|
|
# Despite living in 'tool.poetry.dependencies',
|
|
# these are only used at build time to process the image resource files
|
|
nativeBuildInputs = [ inkscape imagemagick jinja2 poetry-core round ];
|
|
|
|
propagatedBuildInputs = [ graphviz ];
|
|
|
|
pythonImportsCheck = [ "diagrams" ];
|
|
|
|
meta = with lib; {
|
|
description = "Diagram as Code";
|
|
homepage = "https://diagrams.mingrammer.com/";
|
|
license = licenses.mit;
|
|
maintainers = with maintainers; [ addict3d ];
|
|
};
|
|
}
|