python311Packages.pygltflib: init at 1.16.1
This commit is contained in:
parent
237e77803e
commit
d39d1b7a0b
2 changed files with 62 additions and 0 deletions
60
pkgs/development/python-modules/pygltflib/default.nix
Normal file
60
pkgs/development/python-modules/pygltflib/default.nix
Normal file
|
@ -0,0 +1,60 @@
|
|||
{ lib
|
||||
, buildPythonPackage
|
||||
, fetchFromGitLab
|
||||
, fetchFromGitHub
|
||||
, pythonOlder
|
||||
, setuptools
|
||||
, dataclasses-json
|
||||
, deprecated
|
||||
, pytestCheckHook
|
||||
}:
|
||||
|
||||
let
|
||||
gltf-sample-models = fetchFromGitHub {
|
||||
owner = "KhronosGroup";
|
||||
repo = "glTF-Sample-Models";
|
||||
rev = "d7a3cc8e51d7c573771ae77a57f16b0662a905c6";
|
||||
hash = "sha256-TxSg1O6eIiaKagcZUoWZ5Iw/tBKvQIoepRFp3MdVlyI=";
|
||||
};
|
||||
in
|
||||
|
||||
buildPythonPackage rec {
|
||||
pname = "pygltflib";
|
||||
version = "1.16.1";
|
||||
pyproject = true;
|
||||
|
||||
disabled = pythonOlder "3.6";
|
||||
|
||||
src = fetchFromGitLab {
|
||||
owner = "dodgyville";
|
||||
repo = "pygltflib";
|
||||
rev = "da1c687f5ea88d6063616857d54d195fa0739b37"; # no tags in repo, only on PyPI
|
||||
hash = "sha256-aoYVglpQ0Qaq6gEqZ455GlkL2/C1Q5YjQASVLplsWbs=";
|
||||
};
|
||||
|
||||
nativeBuildInputs = [
|
||||
setuptools
|
||||
];
|
||||
|
||||
propagatedBuildInputs = [
|
||||
dataclasses-json
|
||||
deprecated
|
||||
];
|
||||
|
||||
nativeCheckInputs = [
|
||||
pytestCheckHook
|
||||
];
|
||||
preCheck = ''
|
||||
ln -s ${gltf-sample-models} glTF-Sample-Models
|
||||
'';
|
||||
|
||||
pythonImportsCheck = [ "pygltflib" ];
|
||||
|
||||
meta = with lib; {
|
||||
description = "Module for reading and writing basic glTF files";
|
||||
homepage = "https://gitlab.com/dodgyville/pygltflib";
|
||||
changelog = "https://gitlab.com/dodgyville/pygltflib/-/blob/${src.rev}/CHANGELOG.md";
|
||||
license = licenses.mit;
|
||||
maintainers = with maintainers; [ bcdarwin ];
|
||||
};
|
||||
}
|
|
@ -10543,6 +10543,8 @@ self: super: with self; {
|
|||
|
||||
pygls = callPackage ../development/python-modules/pygls { };
|
||||
|
||||
pygltflib = callPackage ../development/python-modules/pygltflib { };
|
||||
|
||||
pygmars = callPackage ../development/python-modules/pygmars { };
|
||||
|
||||
pygments-better-html = callPackage ../development/python-modules/pygments-better-html { };
|
||||
|
|
Loading…
Reference in a new issue