Merge pull request #238741 from natsukium/pyblock/remove

python3Packages.pyblock: remove
This commit is contained in:
Weijia Wang 2023-06-20 15:20:22 +03:00 committed by GitHub
commit 11eb1c2bc9
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
3 changed files with 1 additions and 39 deletions

View file

@ -1,37 +0,0 @@
{ lib, stdenv
, python
, pkgs
, isPy3k
}:
stdenv.mkDerivation rec {
pname = "pyblock";
version = "0.53";
md5_path = "f6d33a8362dee358517d0a9e2ebdd044";
src = pkgs.fetchurl {
url = "https://src.fedoraproject.org/repo/pkgs/python-pyblock/"
+ "${pname}-${version}.tar.bz2/${md5_path}/${pname}-${version}.tar.bz2";
sha256 = "f6cef88969300a6564498557eeea1d8da58acceae238077852ff261a2cb1d815";
};
postPatch = ''
sed -i -e 's|/usr/include/python|${python}/include/python|' \
-e 's/-Werror *//' -e 's|/usr/|'"$out"'/|' Makefile
'';
buildInputs = [ python pkgs.lvm2 pkgs.dmraid ];
makeFlags = [
"USESELINUX=0"
"SITELIB=$(out)/${python.sitePackages}"
];
meta = with lib; {
homepage = "https://www.centos.org/docs/5/html/5.4/Technical_Notes/python-pyblock.html";
description = "Interface for working with block devices";
license = licenses.gpl2Plus;
broken = isPy3k; # doesn't build on python 3, 2018-04-11
};
}

View file

@ -207,6 +207,7 @@ mapAliases ({
Pweave = pweave; # added 2023-02-19
pyalmond = throw "pyalmond has been removed, since its API endpoints have been shutdown"; # added 2023-02-02
pyblake2 = throw "pyblake2 is deprecated in favor of hashlib"; # added 2023-04-23
pyblock = throw "pyblock has been removed, since it is abandoned and broken"; # added 2023-06-20
pydrive = throw "pydrive is broken and deprecated and has been replaced with pydrive2."; # added 2022-06-01
PyGithub = pygithub; # added 2023-02-19
pyGtkGlade = throw "Glade support for pygtk has been removed"; # added 2022-01-15

View file

@ -8319,8 +8319,6 @@ self: super: with self; {
pyblackbird = callPackage ../development/python-modules/pyblackbird { };
pyblock = toPythonModule (callPackage ../development/python-modules/pyblock { });
pybluez = callPackage ../development/python-modules/pybluez {
inherit (pkgs) bluez;
};