depot/third_party/nixpkgs/pkgs/development/python-modules/blurhash-python/default.nix
Default email 23b612e36f Project import generated by Copybara.
GitOrigin-RevId: ae5c332cbb5827f6b1f02572496b141021de335f
2024-01-25 23:12:00 +09:00

50 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 ];
};
}