depot/third_party/nixpkgs/pkgs/development/python-modules/magicgui/default.nix
Default email ae2dc6aea6 Project import generated by Copybara.
GitOrigin-RevId: 4c2fcb090b1f3e5b47eaa7bd33913b574a11e0a0
2024-10-11 07:15:48 +02:00

59 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.9.1";
pyproject = true;
disabled = pythonOlder "3.8";
src = fetchFromGitHub {
owner = "pyapp-kit";
repo = "magicgui";
rev = "refs/tags/v${version}";
hash = "sha256-6ye29HtGQ8iwYE2kQ1wWIBC+bzFsMZmJR4eTXWwu7+U=";
};
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 ];
};
}