Files
nixpkgs/pkgs/development/python-modules/magicgui/default.nix
2024-12-16 18:55:15 +00:00

60 lines
1.1 KiB
Nix

{
lib,
buildPythonPackage,
docstring-parser,
fetchFromGitHub,
hatch-vcs,
hatchling,
napari, # a reverse-dependency, for tests
psygnal,
pyside2,
pytestCheckHook,
pythonOlder,
superqt,
typing-extensions,
}:
buildPythonPackage rec {
pname = "magicgui";
version = "0.10.0";
pyproject = true;
disabled = pythonOlder "3.8";
src = fetchFromGitHub {
owner = "pyapp-kit";
repo = "magicgui";
tag = "v${version}";
hash = "sha256-taPnP9uB1y9hNqG/3MF3ZTc0q94+8WUx4E6+TQsJnIU=";
};
build-system = [
hatch-vcs
hatchling
];
dependencies = [
typing-extensions
superqt
pyside2
psygnal
docstring-parser
];
nativeCheckInputs = [ pytestCheckHook ];
doCheck = false; # Reports "Fatal Python error"
passthru.tests = {
inherit napari;
};
meta = with lib; {
description = "Build GUIs from python functions, using magic. (napari/magicgui)";
homepage = "https://github.com/napari/magicgui";
changelog = "https://github.com/pyapp-kit/magicgui/blob/v${version}/CHANGELOG.md";
license = licenses.mit;
maintainers = with maintainers; [ SomeoneSerge ];
};
}