python3Packages.blurhash: 1.1.4 -> 1.1.5 (#441223)

dotlambda d7814af8 c31ddcb0

Changed files
+13 -12
pkgs
development
python-modules
blurhash
+13 -12
pkgs/development/python-modules/blurhash/default.nix
···
lib,
buildPythonPackage,
fetchFromGitHub,
pytestCheckHook,
pillow,
numpy,
}:
-
buildPythonPackage {
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 ];
};
}
···
lib,
buildPythonPackage,
fetchFromGitHub,
+
pytest-cov-stub,
pytestCheckHook,
pillow,
numpy,
+
setuptools,
}:
+
buildPythonPackage rec {
pname = "blurhash";
+
version = "1.1.5";
+
pyproject = true;
src = fetchFromGitHub {
owner = "halcy";
repo = "blurhash-python";
+
tag = "v${version}";
+
hash = "sha256-lTPn2GTD7eQ9XkZyuttFqEvNgzcx6b7OdeMc5WOXrJs=";
};
+
build-system = [ setuptools ];
nativeCheckInputs = [
+
pytest-cov-stub
pytestCheckHook
pillow
numpy
···
pythonImportsCheck = [ "blurhash" ];
+
meta = {
+
changelog = "https://github.com/halcy/blurhash-python/releases/tag/${src.tag}";
description = "Pure-Python implementation of the blurhash algorithm";
homepage = "https://github.com/halcy/blurhash-python";
+
license = lib.licenses.mit;
+
maintainers = with lib.maintainers; [ dotlambda ];
};
}