mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-24 07:53:19 +00:00
python311Packages.napari-svg: 0.1.6 -> 0.1.10
Diff: https://github.com/napari/napari-svg/compare/refs/tags/v0.1.6...v0.1.10 Changelog: https://github.com/napari/napari-svg/releases/tag/v0.1.10
This commit is contained in:
parent
f36cf57e73
commit
c3e6887409
@ -3,6 +3,7 @@
|
||||
, fetchFromGitHub
|
||||
, imageio
|
||||
, napari-plugin-engine
|
||||
, numpy
|
||||
, pythonOlder
|
||||
, setuptools-scm
|
||||
, vispy
|
||||
@ -10,16 +11,16 @@
|
||||
|
||||
buildPythonPackage rec {
|
||||
pname = "napari-svg";
|
||||
version = "0.1.6";
|
||||
format = "setuptools";
|
||||
version = "0.1.10";
|
||||
pyproject = true;
|
||||
|
||||
disabled = pythonOlder "3.7";
|
||||
|
||||
src = fetchFromGitHub {
|
||||
owner = "napari";
|
||||
repo = pname;
|
||||
repo = "napari-svg";
|
||||
rev = "refs/tags/v${version}";
|
||||
hash = "sha256-lvI6RWT9oUE95vL6WO75CASc/Z+1G5UMm2p8vhqIjA0=";
|
||||
hash = "sha256-ywN9lUwBFW8zP7ivP7MNTYFbTCcmaZxAuKr056uY68Q=";
|
||||
};
|
||||
|
||||
nativeBuildInputs = [
|
||||
@ -27,9 +28,10 @@ buildPythonPackage rec {
|
||||
];
|
||||
|
||||
propagatedBuildInputs = [
|
||||
vispy
|
||||
napari-plugin-engine
|
||||
imageio
|
||||
napari-plugin-engine
|
||||
numpy
|
||||
vispy
|
||||
];
|
||||
|
||||
# Circular dependency: napari
|
||||
@ -38,6 +40,7 @@ buildPythonPackage rec {
|
||||
meta = with lib; {
|
||||
description = "A plugin for writing svg files from napari";
|
||||
homepage = "https://github.com/napari/napari-svg";
|
||||
changelog = "https://github.com/napari/napari-svg/releases/tag/v${version}";
|
||||
license = licenses.bsd3;
|
||||
maintainers = with maintainers; [ SomeoneSerge ];
|
||||
};
|
||||
|
Loading…
Reference in New Issue
Block a user