Files
nixpkgs/pkgs/development/python-modules/imgsize/default.nix
T
2025-10-15 03:53:07 +00:00

52 lines
1.1 KiB
Nix

{
lib,
buildPythonPackage,
fetchFromGitHub,
pytestCheckHook,
pythonOlder,
rustPlatform,
}:
buildPythonPackage rec {
pname = "imgsize";
version = "4.0.1";
pyproject = true;
disabled = pythonOlder "3.10";
src = fetchFromGitHub {
owner = "ojii";
repo = "imgsize";
tag = version;
sha256 = "sha256-Cm6dywl9QOtF8qZ3L/XHCeNf3mU1ki5l8RUpWQilBPw=";
};
cargoDeps = rustPlatform.fetchCargoVendor {
inherit pname version src;
hash = "sha256-8vSBsnNqvHlbSj7m09U9fqBMRHnC2qtpMtWp2KYGA08=";
};
nativeBuildInputs = [
rustPlatform.cargoSetupHook
rustPlatform.maturinBuildHook
];
nativeCheckInputs = [
pytestCheckHook
];
# remove useless dev setup in conftest.py
preCheck = ''
substituteInPlace python-tests/conftest.py \
--replace-fail 'assert sys.prefix != sys.base_prefix, "must be in virtualenv"' "" \
--replace-fail 'check_call(' "# "
'';
meta = {
description = "Pure Python image size library";
homepage = "https://github.com/ojii/imgsize";
license = lib.licenses.bsd3;
maintainers = with lib.maintainers; [ twey ];
};
}