My personal project and infrastructure archive
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 
nomicon/pkgs/development/python-modules/imgsize/default.nix

23 lines
488 B

{ lib
, buildPythonPackage
, fetchFromGitHub
}:
buildPythonPackage rec {
pname = "imgsize";
version = "2.1";
src = fetchFromGitHub {
owner = "ojii";
repo = pname;
rev = version;
sha256 = "0k24qj4i996fz7lpjrs36il6lp51rh13b0j2wip87cy5v9109m2d";
};
meta = with lib; {
description = "Pure Python image size library";
homepage = "https://github.com/ojii/imgsize";
license = with licenses; [ bsd3 ];
maintainers = with maintainers; [ twey ];
};
}