Files
2026-05-31 21:26:40 +00:00

49 lines
1.1 KiB
Nix

{
lib,
buildPythonPackage,
fetchFromGitHub,
pytestCheckHook,
rustPlatform,
}:
buildPythonPackage rec {
pname = "imgsize";
version = "4.0.2";
pyproject = true;
src = fetchFromGitHub {
owner = "ojii";
repo = "imgsize";
tag = version;
sha256 = "sha256-pHLYDC3UjrCKOdfgo2OreE5hGyIyWVSIsQR6piJZe6k=";
};
cargoDeps = rustPlatform.fetchCargoVendor {
inherit pname version src;
hash = "sha256-AXBd6cCpBVEYnU/uqynnO8wsVypV34r023kwzwSsbe4=";
};
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 ];
};
}