python310Packages.vispy: add changelog to meta

- disable on older Python releases
This commit is contained in:
Fabian Affolter
2022-12-26 09:20:31 +01:00
committed by GitHub
parent ba9bf076d5
commit aa08b9f2d0
@@ -10,6 +10,7 @@
, kiwisolver
, libGL
, numpy
, pythonOlder
, setuptools-scm
, setuptools-scm-git-archive
}:
@@ -17,10 +18,13 @@
buildPythonPackage rec {
pname = "vispy";
version = "0.12.1";
format = "setuptools";
disabled = pythonOlder "3.7";
src = fetchPypi {
inherit pname version;
sha256 = "sha256-4AiBwdD5ssCOtuJuk2GtveijqW54eO5sHhmefFhyIk8=";
hash = "sha256-4AiBwdD5ssCOtuJuk2GtveijqW54eO5sHhmefFhyIk8=";
};
patches = [
@@ -65,8 +69,9 @@ buildPythonPackage rec {
];
meta = with lib; {
homepage = "https://vispy.org/index.html";
description = "Interactive scientific visualization in Python";
homepage = "https://vispy.org/index.html";
changelog = "https://github.com/vispy/vispy/blob/v${version}/CHANGELOG.md";
license = licenses.bsd3;
maintainers = with maintainers; [ goertzenator ];
};