Revert "python3.apt: init at 2.8.0"

This reverts commit ec0b212f62.

This is a duplicate of the existing python3Packages.python-apt, and
introducing it broke eval of that package (because now "apt" in the
Python package set doesn't refer to pkgs.apt, as that package
expects).
This commit is contained in:
Alyssa Ross 2024-08-24 18:13:44 +02:00
parent 48e253d228
commit 784f66e301
2 changed files with 0 additions and 48 deletions

View File

@ -1,44 +0,0 @@
{
lib,
buildPythonPackage,
setuptools,
wheel,
fetchFromGitLab,
apt,
dpkg,
}:
buildPythonPackage rec {
pname = "apt";
version = "2.8.0";
pyproject = true;
src = fetchFromGitLab {
domain = "salsa.debian.org";
owner = "apt-team";
repo = "python-apt";
rev = version;
hash = "sha256-7l7rgyJ28iQuL6ShF/KYwL/kAXpLPTqnUIavVxNF+wU=";
};
build-system = [
setuptools
wheel
];
buildInputs = [
apt
];
nativeBuildInputs = [
# dpkg-parsechangelog for setup.py
dpkg
];
meta = {
description = "apt module for python";
homepage = "https://salsa.debian.org/apt-team/python-apt.git";
license = lib.licenses.gpl2Only;
maintainers = with lib.maintainers; [ mkg20001 ];
};
}

View File

@ -719,10 +719,6 @@ self: super: with self; {
apsw = callPackage ../development/python-modules/apsw { };
apt = callPackage ../development/python-modules/apt {
apt = super.pkgs.apt;
};
apycula = callPackage ../development/python-modules/apycula { };
aqipy-atmotech = callPackage ../development/python-modules/aqipy-atmotech { };