mirror of
https://github.com/SebastianWendel/nixpkgs.git
synced 2024-11-06 10:16:44 +01:00
22 lines
456 B
Nix
22 lines
456 B
Nix
{ stdenv
|
|
, buildPythonPackage
|
|
, fetchPypi
|
|
}:
|
|
|
|
buildPythonPackage rec {
|
|
pname = "imagesize";
|
|
version = "1.1.0";
|
|
|
|
src = fetchPypi {
|
|
inherit pname version;
|
|
sha256 = "f3832918bc3c66617f92e35f5d70729187676313caa60c187eb0f28b8fe5e3b5";
|
|
};
|
|
|
|
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 ];
|
|
};
|
|
|
|
}
|