1{ 2 lib, 3 buildPythonPackage, 4 fetchFromGitHub, 5}: 6 7buildPythonPackage rec { 8 pname = "imgsize"; 9 version = "2.1"; 10 format = "setuptools"; 11 12 src = fetchFromGitHub { 13 owner = "ojii"; 14 repo = pname; 15 rev = version; 16 sha256 = "0k24qj4i996fz7lpjrs36il6lp51rh13b0j2wip87cy5v9109m2d"; 17 }; 18 19 meta = with lib; { 20 description = "Pure Python image size library"; 21 homepage = "https://github.com/ojii/imgsize"; 22 license = with licenses; [ bsd3 ]; 23 maintainers = with maintainers; [ twey ]; 24 }; 25}