imgsize: init at 2.1
This commit is contained in:
parent
227b210693
commit
0aa340b2fc
pkgs
|
@ -0,0 +1,23 @@
|
|||
{ stdenv
|
||||
, buildPythonPackage
|
||||
, fetchFromGitHub
|
||||
}:
|
||||
|
||||
buildPythonPackage rec {
|
||||
pname = "imgsize";
|
||||
version = "2.1";
|
||||
|
||||
src = fetchFromGitHub {
|
||||
owner = "ojii";
|
||||
repo = pname;
|
||||
rev = version;
|
||||
sha256 = "0k24qj4i996fz7lpjrs36il6lp51rh13b0j2wip87cy5v9109m2d";
|
||||
};
|
||||
|
||||
meta = with stdenv.lib; {
|
||||
description = "Pure Python image size library";
|
||||
homepage = "https://github.com/ojii/imgsize";
|
||||
license = with licenses; [ bsd3 ];
|
||||
maintainers = with maintainers; [ twey ];
|
||||
};
|
||||
}
|
|
@ -2814,6 +2814,8 @@ in {
|
|||
|
||||
imgaug = callPackage ../development/python-modules/imgaug { };
|
||||
|
||||
imgsize = callPackage ../development/python-modules/imgsize { };
|
||||
|
||||
immutables = callPackage ../development/python-modules/immutables { };
|
||||
|
||||
impacket = callPackage ../development/python-modules/impacket { };
|
||||
|
|
Loading…
Reference in New Issue