mirror of
https://github.com/SebastianWendel/nixpkgs.git
synced 2024-11-06 18:26:45 +01:00
22 lines
417 B
Nix
22 lines
417 B
Nix
{ stdenv
|
|
, buildPythonPackage
|
|
, fetchPypi
|
|
}:
|
|
|
|
buildPythonPackage rec {
|
|
pname = "pexif";
|
|
version = "0.15";
|
|
|
|
src = fetchPypi {
|
|
inherit pname version;
|
|
sha256 = "45a3be037c7ba8b64bbfc48f3586402cc17de55bb9d7357ef2bc99954a18da3f";
|
|
};
|
|
|
|
meta = with stdenv.lib; {
|
|
description = "A module for editing JPEG EXIF data";
|
|
homepage = http://www.benno.id.au/code/pexif/;
|
|
license = licenses.mit;
|
|
};
|
|
|
|
}
|