about summary refs log tree commit diff
path: root/pkgs/development/python-modules/imagesize/default.nix
blob: 0fbe88a520fe1298860dbdb480fbbfdd39dc1b14 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
{ lib
, buildPythonPackage
, fetchPypi
}:

buildPythonPackage rec {
  pname = "imagesize";
  version = "1.3.0";

  src = fetchPypi {
    inherit pname version;
    sha256 = "cd1750d452385ca327479d45b64d9c7729ecf0b3969a58148298c77092261f9d";
  };

  meta = with lib; {
    description = "Getting image size from png/jpeg/jpeg2000/gif file";
    homepage = "https://github.com/shibukawa/imagesize_py";
    license = with licenses; [ mit ];
  };

}