nixpkgs-suyu/pkgs/development/python-modules/blurhash/default.nix
adisbladis 02dab4ab5c python3.pkgs.*: Explicitly pass buildPythonPackage format parameter
Long term we should move everything over to `pyproject = true`, but in
the mean time we can work towards deprecating the implicit `format` paremeter.

cc https://github.com/NixOS/nixpkgs/issues/253154
cc @mweinelt @figsoda
2023-12-07 17:46:49 +01:00

40 lines
869 B
Nix

{ lib
, buildPythonPackage
, fetchFromGitHub
, pytestCheckHook
, pillow
, numpy
}:
buildPythonPackage rec {
pname = "blurhash";
version = "1.1.4";
format = "setuptools";
src = fetchFromGitHub {
owner = "halcy";
repo = "blurhash-python";
# There are no tags: https://github.com/halcy/blurhash-python/issues/4
rev = "22e081ef1c24da1bb5c5eaa2c1d6649724deaef8";
sha256 = "1qq6mhydlp7q3na4kmaq3871h43wh3pyfyxr4b79bia73wjdylxf";
};
postPatch = ''
sed -i '/^addopts/d' setup.cfg
'';
nativeCheckInputs = [
pytestCheckHook
pillow
numpy
];
pythonImportsCheck = [ "blurhash" ];
meta = with lib; {
description = "Pure-Python implementation of the blurhash algorithm";
homepage = "https://github.com/halcy/blurhash-python";
license = licenses.mit;
maintainers = with maintainers; [ dotlambda ];
};
}