11 buildPythonPackage rec {
14 format = "setuptools";
16 disabled = pythonOlder "3.7";
19 inherit pname version;
20 hash = "sha256-crI+X3YMRzPPmpGNsI2U+9bZgwcR0qTowJuPNFY/Ooo=";
28 # Work around Python distutils compiling C++ with $CC (see issue #26709)
29 env.NIX_CFLAGS_COMPILE = lib.optionalString stdenv.isDarwin "-I${lib.getDev libcxx}/include/c++/v1";
31 pythonImportsCheck = [
35 # Tests are not shipped
39 broken = stdenv.isDarwin;
40 description = "Python binding to the library exiv2";
41 homepage = "https://launchpad.net/py3exiv2";
42 license = licenses.gpl3Plus;
43 maintainers = with maintainers; [ vinymeuh ];
44 platforms = with platforms; linux ++ darwin;