python311Packages.trimesh: disable on unsupported Python releases

- add changelog to meta
This commit is contained in:
Fabian Affolter 2023-07-21 09:32:48 +02:00 committed by GitHub
parent e90c865475
commit 4059e5bdbb
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -2,6 +2,7 @@
, buildPythonPackage
, fetchPypi
, setuptools
, pythonOlder
, numpy
, lxml
}:
@ -11,6 +12,8 @@ buildPythonPackage rec {
version = "3.22.5";
format = "pyproject";
disabled = pythonOlder "3.7";
src = fetchPypi {
inherit pname version;
hash = "sha256-Lk30HShbVSBeiclfxJUkd7W2HfvLsZiUdYqebLI7otw=";
@ -33,6 +36,7 @@ buildPythonPackage rec {
meta = with lib; {
description = "Python library for loading and using triangular meshes";
homepage = "https://trimsh.org/";
changelog = "https://github.com/mikedh/trimesh/releases/tag/${version}";
license = licenses.mit;
maintainers = with maintainers; [ gebner ];
};