mirror of
https://github.com/NixOS/nixpkgs.git
synced 2025-01-01 18:44:07 +00:00
0215034f25
when they already rely on SRI hashes.
22 lines
431 B
Nix
22 lines
431 B
Nix
{ lib
|
|
, buildPythonPackage
|
|
, fetchPypi
|
|
}:
|
|
|
|
buildPythonPackage rec {
|
|
pname = "imagesize";
|
|
version = "1.4.1";
|
|
|
|
src = fetchPypi {
|
|
inherit pname version;
|
|
hash = "sha256-aRUERK/7nLDVzFqSs2dvCy+3zZrjnpR6XhGja0SXzUo=";
|
|
};
|
|
|
|
meta = with lib; {
|
|
description = "Getting image size from png/jpeg/jpeg2000/gif file";
|
|
homepage = "https://github.com/shibukawa/imagesize_py";
|
|
license = with licenses; [ mit ];
|
|
};
|
|
|
|
}
|