python3Packages.py3exiv2: 0.7.0 -> 0.8.0
Existing version is marked 'broken'. Resolves #99623.
This commit is contained in:
parent
07099cdb30
commit
4c1d900de6
@ -2,12 +2,12 @@
|
|||||||
|
|
||||||
buildPythonPackage rec {
|
buildPythonPackage rec {
|
||||||
pname = "py3exiv2";
|
pname = "py3exiv2";
|
||||||
version = "0.7.0";
|
version = "0.8.0";
|
||||||
disabled = !(isPy3k);
|
disabled = !(isPy3k);
|
||||||
|
|
||||||
src = fetchPypi {
|
src = fetchPypi {
|
||||||
inherit pname version;
|
inherit pname version;
|
||||||
sha256 = "1gcvmglyl8ad2f336w88gwkd5djjsxdx1ind9wnlbqc3jn9i05cg";
|
sha256 = "1v419f1kkqw8hqyc3yhzslnbzk52j8j3wfknfkjg308n5mf5bn09";
|
||||||
};
|
};
|
||||||
|
|
||||||
buildInputs = [ exiv2 boost ];
|
buildInputs = [ exiv2 boost ];
|
||||||
@ -15,20 +15,11 @@ buildPythonPackage rec {
|
|||||||
# work around python distutils compiling C++ with $CC (see issue #26709)
|
# work around python distutils compiling C++ with $CC (see issue #26709)
|
||||||
NIX_CFLAGS_COMPILE = stdenv.lib.optionalString stdenv.isDarwin "-I${libcxx}/include/c++/v1";
|
NIX_CFLAGS_COMPILE = stdenv.lib.optionalString stdenv.isDarwin "-I${libcxx}/include/c++/v1";
|
||||||
|
|
||||||
# fix broken libboost_python3 detection
|
|
||||||
patches = [
|
|
||||||
(substituteAll {
|
|
||||||
src = ./setup.patch;
|
|
||||||
version = "3${stdenv.lib.versions.minor python.version}";
|
|
||||||
})
|
|
||||||
];
|
|
||||||
|
|
||||||
meta = {
|
meta = {
|
||||||
homepage = "https://launchpad.net/py3exiv2";
|
homepage = "https://launchpad.net/py3exiv2";
|
||||||
description = "A Python3 binding to the library exiv2";
|
description = "A Python3 binding to the library exiv2";
|
||||||
license = with stdenv.lib.licenses; [ gpl3 ];
|
license = with stdenv.lib.licenses; [ gpl3 ];
|
||||||
maintainers = with stdenv.lib.maintainers; [ vinymeuh ];
|
maintainers = with stdenv.lib.maintainers; [ vinymeuh ];
|
||||||
platforms = with stdenv.lib.platforms; linux ++ darwin;
|
platforms = with stdenv.lib.platforms; linux ++ darwin;
|
||||||
broken = true;
|
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
@ -1,11 +0,0 @@
|
|||||||
--- a/setup.py 2017-10-16 22:03:02.000000000 +0200
|
|
||||||
+++ b/setup.py 2017-10-16 22:03:34.000000000 +0200
|
|
||||||
@@ -39,7 +39,7 @@
|
|
||||||
if '3' in l[2:]:
|
|
||||||
return l.replace('libboost', 'boost')
|
|
||||||
|
|
||||||
-libboost = get_libboost_name()
|
|
||||||
+libboost = 'boost_python@version@'
|
|
||||||
|
|
||||||
setup(
|
|
||||||
name='py3exiv2',
|
|
Loading…
Reference in New Issue
Block a user