ansible-later: 2.0.22 -> 2.0.23
[NixPkgs.git] / pkgs / development / python-modules / imagesize / default.nix
blob0f06d36df4f27dfe6338bc3f950ab18644e4d3a0
1 { lib
2 , buildPythonPackage
3 , fetchPypi
4 }:
6 buildPythonPackage rec {
7   pname = "imagesize";
8   version = "1.4.1";
10   src = fetchPypi {
11     inherit pname version;
12     sha256 = "sha256-aRUERK/7nLDVzFqSs2dvCy+3zZrjnpR6XhGja0SXzUo=";
13   };
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   };