Merge pull request #307098 from r-ryantm/auto-update/cilium-cli
[NixPkgs.git] / pkgs / development / python-modules / imgsize / default.nix
blobfe08f4f7288fecd2ddcc88b192c8b4f87af053dc
1 { lib
2 , buildPythonPackage
3 , fetchFromGitHub
4 }:
6 buildPythonPackage rec {
7   pname = "imgsize";
8   version = "2.1";
9   format = "setuptools";
11   src = fetchFromGitHub {
12     owner = "ojii";
13     repo = pname;
14     rev = version;
15     sha256 = "0k24qj4i996fz7lpjrs36il6lp51rh13b0j2wip87cy5v9109m2d";
16   };
18   meta = with lib; {
19     description = "Pure Python image size library";
20     homepage = "https://github.com/ojii/imgsize";
21     license = with licenses; [ bsd3 ];
22     maintainers = with maintainers; [ twey ];
23   };