about summary refs log tree commit diff
path: root/pkgs/development/python-modules/purepng/default.nix
blob: 49e4d93a5342fd54f223112f8a3b8e918d6c21a8 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
{ stdenv
, buildPythonPackage
, fetchPypi
}:

buildPythonPackage rec {
  pname = "purepng";
  version = "0.2.0";

  src = fetchPypi {
    inherit pname version;
    sha256 = "1kcl7a6d7d59360fbz2jwfk6ha6pmqgn396962p4s62j893d2r0d";
  };

  meta = with stdenv.lib; {
    description = "Pure Python library for PNG image encoding/decoding";
    homepage    = https://github.com/scondo/purepng;
    license     = licenses.mit;
  };

}