pythonPackages.libarchive-c: refactor move to python-modules
This commit is contained in:
@@ -0,0 +1,36 @@
|
|||||||
|
{ stdenv
|
||||||
|
, buildPythonPackage
|
||||||
|
, fetchPypi
|
||||||
|
, pytest
|
||||||
|
, pkgs
|
||||||
|
}:
|
||||||
|
|
||||||
|
buildPythonPackage rec {
|
||||||
|
pname = "libarchive-c";
|
||||||
|
version = "2.7";
|
||||||
|
|
||||||
|
src = fetchPypi {
|
||||||
|
inherit pname version;
|
||||||
|
sha256 = "011bfsmqpcwd6920kckllh7zhw2y4rrasgmddb7wjzn2hg1xpsjn";
|
||||||
|
};
|
||||||
|
|
||||||
|
buildInputs = [ pytest pkgs.glibcLocales ];
|
||||||
|
|
||||||
|
LC_ALL="en_US.UTF-8";
|
||||||
|
|
||||||
|
postPatch = ''
|
||||||
|
substituteInPlace libarchive/ffi.py --replace \
|
||||||
|
"find_library('archive')" "'${pkgs.libarchive.lib}/lib/libarchive.so'"
|
||||||
|
'';
|
||||||
|
|
||||||
|
checkPhase = ''
|
||||||
|
py.test tests -k 'not test_check_archiveentry_with_unicode_entries_and_name_zip and not test_check_archiveentry_using_python_testtar'
|
||||||
|
'';
|
||||||
|
|
||||||
|
meta = with stdenv.lib; {
|
||||||
|
homepage = https://github.com/Changaco/python-libarchive-c;
|
||||||
|
description = "Python interface to libarchive";
|
||||||
|
license = licenses.cc0;
|
||||||
|
};
|
||||||
|
|
||||||
|
}
|
||||||
@@ -4240,27 +4240,7 @@ in {
|
|||||||
|
|
||||||
python-libarchive = callPackage ../development/python-modules/python-libarchive { };
|
python-libarchive = callPackage ../development/python-modules/python-libarchive { };
|
||||||
|
|
||||||
libarchive-c = buildPythonPackage rec {
|
libarchive-c = callPackage ../development/python-modules/libarchive-c { };
|
||||||
name = "libarchive-c-${version}";
|
|
||||||
version = "2.7";
|
|
||||||
|
|
||||||
src = pkgs.fetchurl {
|
|
||||||
url = "mirror://pypi/l/libarchive-c/${name}.tar.gz";
|
|
||||||
sha256 = "011bfsmqpcwd6920kckllh7zhw2y4rrasgmddb7wjzn2hg1xpsjn";
|
|
||||||
};
|
|
||||||
|
|
||||||
LC_ALL="en_US.UTF-8";
|
|
||||||
|
|
||||||
postPatch = ''
|
|
||||||
substituteInPlace libarchive/ffi.py --replace \
|
|
||||||
"find_library('archive')" "'${pkgs.libarchive.lib}/lib/libarchive.so'"
|
|
||||||
'';
|
|
||||||
checkPhase = ''
|
|
||||||
py.test tests -k 'not test_check_archiveentry_with_unicode_entries_and_name_zip and not test_check_archiveentry_using_python_testtar'
|
|
||||||
'';
|
|
||||||
|
|
||||||
buildInputs = with self; [ pytest pkgs.glibcLocales ];
|
|
||||||
};
|
|
||||||
|
|
||||||
libasyncns = callPackage ../development/python-modules/libasyncns {
|
libasyncns = callPackage ../development/python-modules/libasyncns {
|
||||||
inherit (pkgs) libasyncns pkgconfig;
|
inherit (pkgs) libasyncns pkgconfig;
|
||||||
|
|||||||
Reference in New Issue
Block a user