2021-01-11 07:54:33 +00:00
|
|
|
{ lib, stdenv
|
2018-10-29 15:09:55 +00:00
|
|
|
, buildPythonPackage
|
|
|
|
, fetchPypi
|
|
|
|
, pytest
|
2018-11-04 10:35:04 +00:00
|
|
|
, glibcLocales
|
|
|
|
, libarchive
|
|
|
|
, mock
|
2018-10-29 15:09:55 +00:00
|
|
|
}:
|
|
|
|
|
|
|
|
buildPythonPackage rec {
|
|
|
|
pname = "libarchive-c";
|
2019-10-24 07:47:37 +01:00
|
|
|
version = "2.9";
|
2018-10-29 15:09:55 +00:00
|
|
|
|
|
|
|
src = fetchPypi {
|
|
|
|
inherit pname version;
|
2019-10-24 07:47:37 +01:00
|
|
|
sha256 = "9919344cec203f5db6596a29b5bc26b07ba9662925a05e24980b84709232ef60";
|
2018-10-29 15:09:55 +00:00
|
|
|
};
|
|
|
|
|
2018-11-04 10:35:04 +00:00
|
|
|
checkInputs = [ mock pytest glibcLocales ];
|
2018-10-29 15:09:55 +00:00
|
|
|
|
|
|
|
LC_ALL="en_US.UTF-8";
|
|
|
|
|
|
|
|
postPatch = ''
|
|
|
|
substituteInPlace libarchive/ffi.py --replace \
|
2018-11-04 10:35:04 +00:00
|
|
|
"find_library('archive')" "'${libarchive.lib}/lib/libarchive${stdenv.hostPlatform.extensions.sharedLibrary}'"
|
2018-10-29 15:09:55 +00:00
|
|
|
'';
|
|
|
|
|
|
|
|
checkPhase = ''
|
|
|
|
py.test tests -k 'not test_check_archiveentry_with_unicode_entries_and_name_zip and not test_check_archiveentry_using_python_testtar'
|
|
|
|
'';
|
|
|
|
|
2021-01-11 07:54:33 +00:00
|
|
|
meta = with lib; {
|
2020-04-01 02:11:51 +01:00
|
|
|
homepage = "https://github.com/Changaco/python-libarchive-c";
|
2018-10-29 15:09:55 +00:00
|
|
|
description = "Python interface to libarchive";
|
|
|
|
license = licenses.cc0;
|
|
|
|
};
|
|
|
|
|
|
|
|
}
|