f34ce41345
GitOrigin-RevId: b73c2221a46c13557b1b3be9c2070cc42cf01eb3
57 lines
1.2 KiB
Nix
57 lines
1.2 KiB
Nix
{
|
|
lib,
|
|
blockdiag,
|
|
fetchFromGitHub,
|
|
buildPythonPackage,
|
|
nose,
|
|
pytestCheckHook,
|
|
setuptools,
|
|
pythonOlder,
|
|
}:
|
|
|
|
buildPythonPackage rec {
|
|
pname = "nwdiag";
|
|
version = "3.0.0";
|
|
pyproject = true;
|
|
|
|
disabled = pythonOlder "3.7";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "blockdiag";
|
|
repo = "nwdiag";
|
|
rev = "refs/tags/${version}";
|
|
hash = "sha256-uKrdkXpL5YBr953sRsHknYg+2/WwrZmyDf8BMA2+0tU=";
|
|
};
|
|
|
|
build-system = [ setuptools ];
|
|
|
|
dependencies = [ blockdiag ];
|
|
|
|
# tests rely on nose
|
|
doCheck = pythonOlder "3.12";
|
|
|
|
nativeCheckInputs = [
|
|
nose
|
|
pytestCheckHook
|
|
];
|
|
|
|
pytestFlagsArray = [ "src/nwdiag/tests/" ];
|
|
|
|
disabledTests = [
|
|
# AttributeError: 'TestRstDirectives' object has no attribute 'assertRegexpMatches'
|
|
"svg"
|
|
"noviewbox"
|
|
];
|
|
|
|
pythonImportsCheck = [ "nwdiag" ];
|
|
|
|
meta = with lib; {
|
|
description = "Generate network-diagram image from spec-text file (similar to Graphviz)";
|
|
homepage = "http://blockdiag.com/";
|
|
changelog = "https://github.com/blockdiag/nwdiag/blob/${version}/CHANGES.rst";
|
|
license = licenses.asl20;
|
|
maintainers = with maintainers; [ bjornfor ];
|
|
mainProgram = "rackdiag";
|
|
platforms = platforms.unix;
|
|
};
|
|
}
|