python312Packages.magicgui: 0.5.1 -> 0.9.1
Diff: https://github.com/pyapp-kit/magicgui/compare/refs/tags/v0.5.1...v0.9.1 Changelog: https://github.com/pyapp-kit/magicgui/blob/v0.9.1/CHANGELOG.md
This commit is contained in:
@@ -1,37 +1,46 @@
|
||||
{
|
||||
lib,
|
||||
buildPythonPackage,
|
||||
fetchFromGitHub,
|
||||
setuptools-scm,
|
||||
pytestCheckHook,
|
||||
typing-extensions,
|
||||
qtpy,
|
||||
pyside2,
|
||||
psygnal,
|
||||
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.5.1";
|
||||
version = "0.9.1";
|
||||
pyproject = true;
|
||||
|
||||
format = "pyproject";
|
||||
disabled = pythonOlder "3.8";
|
||||
|
||||
src = fetchFromGitHub {
|
||||
owner = "napari";
|
||||
owner = "pyapp-kit";
|
||||
repo = "magicgui";
|
||||
rev = "refs/tags/v${version}";
|
||||
hash = "sha256-fVfBQaaT8/lUGqZRXjOPgvkC01Izb8Sxqn7RCqnW9bo=";
|
||||
hash = "sha256-6ye29HtGQ8iwYE2kQ1wWIBC+bzFsMZmJR4eTXWwu7+U=";
|
||||
};
|
||||
|
||||
nativeBuildInputs = [ setuptools-scm ];
|
||||
propagatedBuildInputs = [
|
||||
build-system = [
|
||||
hatch-vcs
|
||||
hatchling
|
||||
];
|
||||
|
||||
dependencies = [
|
||||
typing-extensions
|
||||
qtpy
|
||||
superqt
|
||||
pyside2
|
||||
psygnal
|
||||
docstring-parser
|
||||
];
|
||||
|
||||
nativeCheckInputs = [ pytestCheckHook ];
|
||||
|
||||
doCheck = false; # Reports "Fatal Python error"
|
||||
@@ -43,6 +52,7 @@ buildPythonPackage rec {
|
||||
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 ];
|
||||
};
|
||||
|
||||
Reference in New Issue
Block a user