Commit 784f66e3 authored by Alyssa Ross's avatar Alyssa Ross
Browse files

Revert "python3.apt: init at 2.8.0"

This reverts commit ec0b212f.

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).
parent 48e253d2
Loading
Loading
Loading
Loading
+0 −44
Original line number Diff line number Diff line
{
  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 ];
  };
}
+0 −4
Original line number Diff line number Diff line
@@ -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 { };