Files
nixpkgs/pkgs/development/python-modules/minexr/default.nix
T
Martin Weinelt edd9dacde8 python3Packages.minexr: 1.0.1 -> 1.0.2
This commit was automatically generated using update-python-libraries.
2026-02-01 17:19:33 +01:00

37 lines
742 B
Nix

{
lib,
buildPythonPackage,
fetchFromGitHub,
pytestCheckHook,
numpy,
pillow,
}:
buildPythonPackage rec {
pname = "minexr";
version = "1.0.2";
format = "setuptools";
src = fetchFromGitHub {
owner = "cheind";
repo = "py-minexr";
tag = version;
hash = "sha256-p42rlhaHq0A9+zk6c0evRDjNR1H/ruWJqPF5+nCTR8o=";
};
propagatedBuildInputs = [ numpy ];
pythonImportsCheck = [ "minexr" ];
nativeCheckInputs = [
pytestCheckHook
pillow
];
meta = {
description = "Minimal, standalone OpenEXR reader for single-part, uncompressed scan line files";
homepage = "https://github.com/cheind/py-minexr";
license = lib.licenses.mit;
maintainers = with lib.maintainers; [ lucasew ];
};
}