python3.pkgs.opsdroid_get_image_size: init at 0.2.2
This commit is contained in:
parent
e9ca610027
commit
f369a5a03b
2 changed files with 26 additions and 0 deletions
|
@ -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 ];
|
||||||
|
};
|
||||||
|
}
|
|
@ -4700,6 +4700,8 @@ in {
|
||||||
|
|
||||||
opt-einsum = callPackage ../development/python-modules/opt-einsum { };
|
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 { };
|
optuna = callPackage ../development/python-modules/optuna { };
|
||||||
|
|
||||||
opuslib = callPackage ../development/python-modules/opuslib { };
|
opuslib = callPackage ../development/python-modules/opuslib { };
|
||||||
|
|
Loading…
Reference in a new issue