aboutsummaryrefslogtreecommitdiff
path: root/nixpkgs/pkgs/development/python-modules/imagesize/default.nix
blob: ab3ee46c1b83c4fe4c3c4931316d91fa8f173a92 (plain)
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 = "1.2.0";

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

  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 ];
  };

}