Unverified Commit e89f43f4 authored by Aleksana's avatar Aleksana Committed by GitHub
Browse files

python3Packages.basswood-av: drop (#430780)

parents 10dc1f6c eb25c872
Loading
Loading
Loading
Loading
+0 −40
Original line number Diff line number Diff line
{
  lib,
  buildPythonPackage,
  fetchFromGitHub,
  setuptools,
  pkg-config,
  cython,
  ffmpeg,
}:

buildPythonPackage rec {
  pname = "basswood-av";
  version = "15.2.1";
  pyproject = true;

  src = fetchFromGitHub {
    owner = "basswood-io";
    repo = "BasswoodAV";
    tag = version;
    hash = "sha256-GWNMPiNk8nSSm45EaRm1Te0PpCNPSYf62WbPYFY/9H8=";
  };

  build-system = [
    setuptools
    cython
  ];

  nativeBuildInputs = [ pkg-config ];

  buildInputs = [ ffmpeg ];

  pythonImportsCheck = [ "bv" ];

  meta = {
    description = "Python bindings for ffmpeg libraries";
    homepage = "https://github.com/basswood-io/BasswoodAV";
    license = lib.licenses.bsd3;
    maintainers = [ ];
  };
}
+1 −0
Original line number Diff line number Diff line
@@ -74,6 +74,7 @@ mapAliases {
  autotrash = throw "'autotrash' has been renamed to/replaced by 'super.pkgs.autotrash'"; # Converted to throw 2025-10-29
  Babel = throw "'Babel' has been renamed to/replaced by 'babel'"; # Converted to throw 2025-10-29
  backports_shutil_get_terminal_size = throw "'backports_shutil_get_terminal_size' has been renamed to/replaced by 'backports-shutil-get-terminal-size'"; # Converted to throw 2025-10-29
  basewood-av = throw "'basewood-av' has been removed due to being archived upstream and unused"; # added 2025-11-26
  bash_kernel = throw "'bash_kernel' has been renamed to/replaced by 'bash-kernel'"; # Converted to throw 2025-10-29
  beancount_docverif = throw "'beancount_docverif' has been renamed to/replaced by 'beancount-docverif'"; # Converted to throw 2025-10-29
  beets-stable = lib.warn "beets-stable was aliased to beets, since upstream releases are frequent nowadays" self.beets; # added 2025-10-16
+0 −2
Original line number Diff line number Diff line
@@ -1776,8 +1776,6 @@ self: super: with self; {
  basiciw = callPackage ../development/python-modules/basiciw { };
  basswood-av = callPackage ../development/python-modules/basswood-av { };
  batchgenerators = callPackage ../development/python-modules/batchgenerators { };
  batchspawner = callPackage ../development/python-modules/batchspawner { };