Merge pull request #307098 from r-ryantm/auto-update/cilium-cli
[NixPkgs.git] / pkgs / development / python-modules / imagesize / default.nix
blobab41410b7ad84e5649c3eb3fbe16f25ee1970721
1 { lib
2 , buildPythonPackage
3 , fetchPypi
4 }:
6 buildPythonPackage rec {
7   pname = "imagesize";
8   version = "1.4.1";
9   format = "setuptools";
11   src = fetchPypi {
12     inherit pname version;
13     hash = "sha256-aRUERK/7nLDVzFqSs2dvCy+3zZrjnpR6XhGja0SXzUo=";
14   };
16   meta = with lib; {
17     description = "Getting image size from png/jpeg/jpeg2000/gif file";
18     homepage = "https://github.com/shibukawa/imagesize_py";
19     license = with licenses; [ mit ];
20   };