blob: 349687e30fe3bfc3afe4aab8399dbaa061887cae (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
|
{
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 ];
};
}
|