python: libarchive-c: 2.7 -> 2.8

This commit is contained in:
Frederik Rietdijk 2018-11-04 11:35:04 +01:00
parent 050c352a48
commit 05a94cd622
2 changed files with 10 additions and 6 deletions

View File

@ -2,25 +2,27 @@
, buildPythonPackage
, fetchPypi
, pytest
, pkgs
, glibcLocales
, libarchive
, mock
}:
buildPythonPackage rec {
pname = "libarchive-c";
version = "2.7";
version = "2.8";
src = fetchPypi {
inherit pname version;
sha256 = "011bfsmqpcwd6920kckllh7zhw2y4rrasgmddb7wjzn2hg1xpsjn";
sha256 = "06d44d5b9520bdac93048c72b7ed66d11a6626da16d2086f9aad079674d8e061";
};
buildInputs = [ pytest pkgs.glibcLocales ];
checkInputs = [ mock pytest glibcLocales ];
LC_ALL="en_US.UTF-8";
postPatch = ''
substituteInPlace libarchive/ffi.py --replace \
"find_library('archive')" "'${pkgs.libarchive.lib}/lib/libarchive.so'"
"find_library('archive')" "'${libarchive.lib}/lib/libarchive${stdenv.hostPlatform.extensions.sharedLibrary}'"
'';
checkPhase = ''

View File

@ -4446,7 +4446,9 @@ in {
python-libarchive = callPackage ../development/python-modules/python-libarchive { };
libarchive-c = callPackage ../development/python-modules/libarchive-c { };
libarchive-c = callPackage ../development/python-modules/libarchive-c {
inherit (pkgs) libarchive;
};
libasyncns = callPackage ../development/python-modules/libasyncns {
inherit (pkgs) libasyncns pkgconfig;