pythonPackages.piexif: init at 1.0.12

This commit is contained in:
Jaakko Luttinen 2017-05-06 21:20:25 +03:00
parent 0d6d47edd1
commit 976d811ad4
No known key found for this signature in database
GPG key ID: 7B1CE13152E6B964
2 changed files with 26 additions and 0 deletions

View file

@ -0,0 +1,24 @@
{lib, buildPythonPackage, fetchurl, pillow}:
buildPythonPackage rec {
name = "${pname}-${version}";
pname = "piexif";
version = "1.0.12";
# pillow needed for unit tests
buildInputs = [ pillow ];
# No .tar.gz source available at PyPI, only .zip source, so need to use
# fetchurl because fetchPypi doesn't support .zip.
src = fetchurl {
url = "mirror://pypi/${builtins.substring 0 1 pname}/${pname}/${name}.zip";
sha256 = "15dvdr7b5xxsbsq5k6kq8h0xnzrkqzc08dzlih48a21x27i02bii";
};
meta = {
description = "Simplify Exif manipulations with Python";
homepage = https://github.com/hMatoba/Piexif;
license = lib.licenses.mit;
maintainers = with lib.maintainers; [ jluttine ];
};
}

View file

@ -18371,6 +18371,8 @@ in {
};
};
piexif = callPackage ../development/python-modules/piexif { };
pip = buildPythonPackage rec {
pname = "pip";
version = "9.0.1";