python3.pkgs.opsdroid_get_image_size: init at 0.2.2

This commit is contained in:
Robin Gloster 2021-05-09 10:47:31 -05:00
parent e9ca610027
commit f369a5a03b
No known key found for this signature in database
GPG key ID: D5C458DF6DD97EDF
2 changed files with 26 additions and 0 deletions

View file

@ -0,0 +1,24 @@
{ lib, buildPythonPackage, fetchPypi
}:
buildPythonPackage rec {
pname = "opsdroid_get_image_size";
version = "0.2.2";
src = fetchPypi {
inherit pname version;
sha256 = "124j2xvfxv09q42qfb8nqlcn55y7f09iayrix3yfyrs2qyzav78a";
};
# test data not included on pypi
doCheck = false;
pythonImportsCheck = [ "get_image_size" ];
meta = with lib; {
description = "Get image width and height given a file path using minimal dependencies";
license = licenses.mit;
homepage = "https://github.com/opsdroid/image_size";
maintainers = with maintainers; [ globin ];
};
}

View file

@ -4700,6 +4700,8 @@ in {
opt-einsum = callPackage ../development/python-modules/opt-einsum { };
opsdroid_get_image_size = callPackage ../development/python-modules/opsdroid_get_image_size { };
optuna = callPackage ../development/python-modules/optuna { };
opuslib = callPackage ../development/python-modules/opuslib { };