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

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

  src = fetchPypi {
    inherit pname version;
    sha256 = "0msgz4ncp2nb5nbsxnf8kvxsl6nhwvc3b46ik097fvznl3y10gdv";
  };

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

}