mirror of
https://github.com/NixOS/nixpkgs.git
synced 2025-02-24 21:14:52 +00:00
python312Packages.pywavefront: init at 1.3.3
This commit is contained in:
parent
a3a1f7ed58
commit
754ef54b0c
45
pkgs/development/python-modules/pywavefront/default.nix
Normal file
45
pkgs/development/python-modules/pywavefront/default.nix
Normal file
@ -0,0 +1,45 @@
|
||||
{ lib
|
||||
, buildPythonPackage
|
||||
, fetchFromGitHub
|
||||
, setuptools
|
||||
, pyglet
|
||||
, pytestCheckHook
|
||||
, mock
|
||||
}:
|
||||
|
||||
buildPythonPackage rec {
|
||||
pname = "PyWavefront";
|
||||
version = "1.3.3";
|
||||
pyproject = true;
|
||||
|
||||
src = fetchFromGitHub {
|
||||
owner = "pywavefront";
|
||||
repo = "PyWavefront";
|
||||
rev = version;
|
||||
hash = "sha256-ci40L2opJ+NYYtaAeX1Y5pzkdK+loFspTriX/xv4KR8=";
|
||||
};
|
||||
|
||||
nativeBuildInputs = [
|
||||
setuptools
|
||||
];
|
||||
|
||||
passthru.optional-dependencies.visualization = [
|
||||
pyglet
|
||||
];
|
||||
|
||||
nativeCheckInputs = [
|
||||
pytestCheckHook
|
||||
mock
|
||||
];
|
||||
|
||||
|
||||
pythonImportsCheck = [ "pywavefront" ];
|
||||
|
||||
meta = with lib; {
|
||||
description = "Python library for importing Wavefront .obj files";
|
||||
homepage = "https://github.com/pywavefront/PyWavefront";
|
||||
changelog = "https://github.com/pywavefront/PyWavefront/blob/${src.rev}/CHANGELOG.md";
|
||||
license = licenses.bsd3;
|
||||
maintainers = with maintainers; [ pbsds ];
|
||||
};
|
||||
}
|
@ -12662,6 +12662,8 @@ self: super: with self; {
|
||||
|
||||
pywaterkotte = callPackage ../development/python-modules/pywaterkotte { };
|
||||
|
||||
pywavefront = callPackage ../development/python-modules/pywavefront { };
|
||||
|
||||
pywavelets = callPackage ../development/python-modules/pywavelets { };
|
||||
|
||||
pywayland = callPackage ../development/python-modules/pywayland { };
|
||||
|
Loading…
Reference in New Issue
Block a user