mirror of
https://github.com/ilyakooo0/nixpkgs.git
synced 2025-01-04 09:56:13 +03:00
python3Packages.libarchive: remove due to prolonged breakage
This commit is contained in:
parent
bbeab7d50e
commit
8833467efc
@ -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;
|
||||
};
|
||||
|
||||
}
|
@ -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 { };
|
||||
|
Loading…
Reference in New Issue
Block a user