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

buildPythonPackage rec {
  pname = "pexif";
  version = "0.15";

  src = fetchPypi {
    inherit pname version;
    sha256 = "45a3be037c7ba8b64bbfc48f3586402cc17de55bb9d7357ef2bc99954a18da3f";
  };

  meta = with lib; {
    description = "A module for editing JPEG EXIF data";
    homepage = "http://www.benno.id.au/code/pexif/";
    license = licenses.mit;
  };

}