python3Packages.libarchive: remove due to prolonged breakage

This commit is contained in:
Jonathan Ringer 2020-08-13 09:38:43 -07:00 committed by Jon
parent bbeab7d50e
commit 8833467efc
2 changed files with 0 additions and 31 deletions

View File

@ -1,27 +0,0 @@
{ stdenv
, buildPythonPackage
, fetchurl
, isPy3k
, pkgs
}:
buildPythonPackage rec {
version = "3.1.2-1";
pname = "libarchive";
disabled = isPy3k;
src = fetchurl {
url = "http://python-libarchive.googlecode.com/files/python-libarchive-${version}.tar.gz";
sha256 = "0j4ibc4mvq64ljya9max8832jafi04jciff9ia9qy0xhhlwkcx8x";
};
propagatedBuildInputs = [ pkgs.libarchive.lib ];
meta = with stdenv.lib; {
description = "Multi-format archive and compression library";
homepage = "https://libarchive.org/";
license = licenses.bsd0;
broken = true;
};
}

View File

@ -3242,8 +3242,6 @@ in {
libarchive-c = callPackage ../development/python-modules/libarchive-c { inherit (pkgs) libarchive; };
libarchive = self.python-libarchive; # The latter is the name upstream uses
libarcus = callPackage ../development/python-modules/libarcus { inherit (pkgs) protobuf; };
libasyncns = callPackage ../development/python-modules/libasyncns { inherit (pkgs) libasyncns pkgconfig; };
@ -5650,8 +5648,6 @@ in {
python-Levenshtein = callPackage ../development/python-modules/python-levenshtein { };
python-libarchive = callPackage ../development/python-modules/python-libarchive { };
python-logstash = callPackage ../development/python-modules/python-logstash { };
python-ly = callPackage ../development/python-modules/python-ly { };