mirror of
https://github.com/ilyakooo0/nixpkgs.git
synced 2024-11-16 18:37:04 +03:00
python: libarchive-c: 2.7 -> 2.8
This commit is contained in:
parent
050c352a48
commit
05a94cd622
@ -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 = ''
|
||||
|
@ -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;
|
||||
|
Loading…
Reference in New Issue
Block a user