mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-28 01:43:15 +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
|
, fetchFromGitHub
|
||||||
, imageio
|
, imageio
|
||||||
, napari-plugin-engine
|
, napari-plugin-engine
|
||||||
|
, numpy
|
||||||
, pythonOlder
|
, pythonOlder
|
||||||
, setuptools-scm
|
, setuptools-scm
|
||||||
, vispy
|
, vispy
|
||||||
@ -10,16 +11,16 @@
|
|||||||
|
|
||||||
buildPythonPackage rec {
|
buildPythonPackage rec {
|
||||||
pname = "napari-svg";
|
pname = "napari-svg";
|
||||||
version = "0.1.6";
|
version = "0.1.10";
|
||||||
format = "setuptools";
|
pyproject = true;
|
||||||
|
|
||||||
disabled = pythonOlder "3.7";
|
disabled = pythonOlder "3.7";
|
||||||
|
|
||||||
src = fetchFromGitHub {
|
src = fetchFromGitHub {
|
||||||
owner = "napari";
|
owner = "napari";
|
||||||
repo = pname;
|
repo = "napari-svg";
|
||||||
rev = "refs/tags/v${version}";
|
rev = "refs/tags/v${version}";
|
||||||
hash = "sha256-lvI6RWT9oUE95vL6WO75CASc/Z+1G5UMm2p8vhqIjA0=";
|
hash = "sha256-ywN9lUwBFW8zP7ivP7MNTYFbTCcmaZxAuKr056uY68Q=";
|
||||||
};
|
};
|
||||||
|
|
||||||
nativeBuildInputs = [
|
nativeBuildInputs = [
|
||||||
@ -27,9 +28,10 @@ buildPythonPackage rec {
|
|||||||
];
|
];
|
||||||
|
|
||||||
propagatedBuildInputs = [
|
propagatedBuildInputs = [
|
||||||
vispy
|
|
||||||
napari-plugin-engine
|
|
||||||
imageio
|
imageio
|
||||||
|
napari-plugin-engine
|
||||||
|
numpy
|
||||||
|
vispy
|
||||||
];
|
];
|
||||||
|
|
||||||
# Circular dependency: napari
|
# Circular dependency: napari
|
||||||
@ -38,6 +40,7 @@ buildPythonPackage rec {
|
|||||||
meta = with lib; {
|
meta = with lib; {
|
||||||
description = "A plugin for writing svg files from napari";
|
description = "A plugin for writing svg files from napari";
|
||||||
homepage = "https://github.com/napari/napari-svg";
|
homepage = "https://github.com/napari/napari-svg";
|
||||||
|
changelog = "https://github.com/napari/napari-svg/releases/tag/v${version}";
|
||||||
license = licenses.bsd3;
|
license = licenses.bsd3;
|
||||||
maintainers = with maintainers; [ SomeoneSerge ];
|
maintainers = with maintainers; [ SomeoneSerge ];
|
||||||
};
|
};
|
||||||
|
Loading…
Reference in New Issue
Block a user