Merge pull request #207733 from r-ryantm/auto-update/python3.10-vispy

python310Packages.vispy: 0.12.0 -> 0.12.1
This commit is contained in:
Fabian Affolter 2022-12-26 09:40:48 +01:00 committed by GitHub
commit 25994e538e
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -10,17 +10,21 @@
, kiwisolver
, libGL
, numpy
, pythonOlder
, setuptools-scm
, setuptools-scm-git-archive
}:
buildPythonPackage rec {
pname = "vispy";
version = "0.12.0";
version = "0.12.1";
format = "setuptools";
disabled = pythonOlder "3.7";
src = fetchPypi {
inherit pname version;
sha256 = "sha256-CtSg/pAtOhhiuS6yE3ogzF0llceMQTF12ShXIi9GMD0=";
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 ];
};