51 lines
876 B
Nix
51 lines
876 B
Nix
|
{ lib
|
||
|
, buildPythonPackage
|
||
|
, pythonOlder
|
||
|
, fetchFromGitHub
|
||
|
, cffi
|
||
|
, pillow
|
||
|
, pytestCheckHook
|
||
|
, setuptools-scm
|
||
|
, six
|
||
|
}:
|
||
|
|
||
|
buildPythonPackage rec {
|
||
|
pname = "blurhash-python";
|
||
|
version = "1.2.2";
|
||
|
|
||
|
disabled = pythonOlder "3.8";
|
||
|
|
||
|
pyproject = true;
|
||
|
|
||
|
src = fetchFromGitHub {
|
||
|
owner = "woltapp";
|
||
|
repo = "blurhash-python";
|
||
|
rev = "v${version}";
|
||
|
hash = "sha256-Cz+PkPp1knvT3U5ofyb1PstM9kzBOkgPbx03LgOLXgw=";
|
||
|
};
|
||
|
|
||
|
nativeBuildInputs = [
|
||
|
cffi
|
||
|
setuptools-scm
|
||
|
];
|
||
|
|
||
|
propagatedBuildInputs = [
|
||
|
cffi
|
||
|
pillow
|
||
|
six
|
||
|
];
|
||
|
|
||
|
pythonImportsCheck = [ "blurhash" ];
|
||
|
|
||
|
nativeCheckInputs = [
|
||
|
pytestCheckHook
|
||
|
];
|
||
|
|
||
|
meta = {
|
||
|
description = "Compact representation of a placeholder for an image";
|
||
|
homepage = "https://github.com/woltapp/blurhash-python";
|
||
|
license = lib.licenses.mit;
|
||
|
maintainers = with lib.maintainers; [ dotlambda ];
|
||
|
};
|
||
|
}
|