anki-bin: 24.06.3 -> 24.11 (#360722)
[NixPkgs.git] / pkgs / development / python-modules / imgsize / default.nix
blobc368a67085d0c07e33d8016496d92f6696f6f4fd
2   lib,
3   buildPythonPackage,
4   fetchFromGitHub,
5 }:
7 buildPythonPackage rec {
8   pname = "imgsize";
9   version = "2.1";
10   format = "setuptools";
12   src = fetchFromGitHub {
13     owner = "ojii";
14     repo = pname;
15     rev = version;
16     sha256 = "0k24qj4i996fz7lpjrs36il6lp51rh13b0j2wip87cy5v9109m2d";
17   };
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   };