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/pexif/default.nix

21 lines
409 B

{ lib
, 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;
};
}