mirror of
https://github.com/SebastianWendel/nixpkgs.git
synced 2024-11-06 02:06:46 +01:00
bac8f18fc6
Semi-automatic update generated by https://github.com/ryantm/nixpkgs-update tools. This update was made based on information from https://repology.org/metapackage/python3.7-piexif/versions
23 lines
550 B
Nix
23 lines
550 B
Nix
{ stdenv, buildPythonPackage, fetchPypi, pillow }:
|
|
|
|
buildPythonPackage rec {
|
|
pname = "piexif";
|
|
version = "1.1.3";
|
|
|
|
# Pillow needed for unit tests
|
|
checkInputs = [ pillow ];
|
|
|
|
src = fetchPypi {
|
|
inherit pname version;
|
|
extension = "zip";
|
|
sha256 = "06sz58q4mrw472p8fbnq7wsj8zpi5js5r8phm2hiwfmz0v33bjw3";
|
|
};
|
|
|
|
meta = with stdenv.lib; {
|
|
description = "Simplify Exif manipulations with Python";
|
|
homepage = https://github.com/hMatoba/Piexif;
|
|
license = licenses.mit;
|
|
maintainers = with maintainers; [ jluttine ];
|
|
};
|
|
}
|