Files
nixpkgs/pkgs/development/python-modules/grandalf/default.nix
T
Martin Weinelt f27e86fb29 python3Packages.grandalf: 0.7 -> 0.8
This commit was automatically generated using update-python-libraries.
2026-02-01 17:19:14 +01:00

39 lines
811 B
Nix

{
lib,
buildPythonPackage,
fetchFromGitHub,
setuptools,
pyparsing,
pytestCheckHook,
}:
buildPythonPackage rec {
pname = "grandalf";
version = "0.8";
pyproject = true;
src = fetchFromGitHub {
owner = "bdcht";
repo = "grandalf";
tag = "v${version}";
hash = "sha256-oKuzk/vsEkoiEPgt/fsaaurKfz5CElXPEJe88aFBLqU=";
};
patches = [ ./no-setup-requires-pytestrunner.patch ];
build-system = [ setuptools ];
dependencies = [ pyparsing ];
nativeCheckInputs = [ pytestCheckHook ];
pythonImportsCheck = [ "grandalf" ];
meta = {
description = "Module for experimentations with graphs and drawing algorithms";
homepage = "https://github.com/bdcht/grandalf";
license = lib.licenses.gpl2Only;
maintainers = with lib.maintainers; [ cmcdragonkai ];
};
}