Merge pull request #270318 from dotlambda/blurhash-python-init

python311Packages.blurhash-python: init at 1.2.1
This commit is contained in:
Robert Schütz
2024-01-20 20:34:40 -08:00
committed by GitHub
2 changed files with 52 additions and 0 deletions
@@ -0,0 +1,50 @@
{ lib
, buildPythonPackage
, pythonOlder
, fetchFromGitHub
, cffi
, pillow
, pytestCheckHook
, setuptools-scm
, six
}:
buildPythonPackage rec {
pname = "blurhash-python";
version = "1.2.1";
disabled = pythonOlder "3.8";
pyproject = true;
src = fetchFromGitHub {
owner = "woltapp";
repo = "blurhash-python";
rev = "v${version}";
hash = "sha256-z7V2Ck8h12Vuj/5/s9ZP/uqQ4olo8xwg+ZR3iW4ca/M=";
};
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 ];
};
}
+2
View File
@@ -1583,6 +1583,8 @@ self: super: with self; {
blurhash = callPackage ../development/python-modules/blurhash { };
blurhash-python = callPackage ../development/python-modules/blurhash-python { };
bme280spi = callPackage ../development/python-modules/bme280spi { };
bme680 = callPackage ../development/python-modules/bme680 { };