1{ lib
2, buildPythonPackage
3, fetchPypi
4}:
5
6buildPythonPackage rec {
7 pname = "imagesize";
8 version = "1.2.0";
9
10 src = fetchPypi {
11 inherit pname version;
12 sha256 = "b1f6b5a4eab1f73479a50fb79fcf729514a900c341d8503d62a62dbc4127a2b1";
13 };
14
15 meta = with lib; {
16 description = "Getting image size from png/jpeg/jpeg2000/gif file";
17 homepage = "https://github.com/shibukawa/imagesize_py";
18 license = with licenses; [ mit ];
19 };
20
21}