From 482a283138ed6a98daa6d2ebbfe09d3a31d5c491 Mon Sep 17 00:00:00 2001 From: Doron Behar Date: Sun, 4 Jan 2026 16:35:25 +0200 Subject: [PATCH] python3.pkgs.beets-copyartifacts: 0.1.5 -> 0.1.6 Diff: https://github.com/adammillerio/beets-copyartifacts/compare/v0.1.5...v0.1.6 Changelog: https://github.com/adammillerio/beets-copyartifacts/releases/tag/v0.1.6 Keep it broken though - it still experiences substantial test failures. --- .../python-modules/beets-copyartifacts/default.nix | 14 ++------------ 1 file changed, 2 insertions(+), 12 deletions(-) diff --git a/pkgs/development/python-modules/beets-copyartifacts/default.nix b/pkgs/development/python-modules/beets-copyartifacts/default.nix index ed7ab0ba8cfe..b4a583abd567 100644 --- a/pkgs/development/python-modules/beets-copyartifacts/default.nix +++ b/pkgs/development/python-modules/beets-copyartifacts/default.nix @@ -19,25 +19,16 @@ buildPythonPackage rec { pname = "beets-copyartifacts"; - version = "0.1.5"; + version = "0.1.6"; pyproject = true; src = fetchFromGitHub { repo = "beets-copyartifacts"; owner = "adammillerio"; tag = "v${version}"; - hash = "sha256-UTZh7T6Z288PjxFgyFxHnPt0xpAH3cnr8/jIrlJhtyU="; + hash = "sha256-fMnXuMwxylO9Q7EFPpkgwwNeBuviUa8HduRrqrqdMaI="; }; - postPatch = '' - sed -i -e '/namespace_packages/d' setup.py - printf 'from pkgutil import extend_path\n__path__ = extend_path(__path__, __name__)\n' >beetsplug/__init__.py - - # beets v2.1.0 compat - # - sed -i -e 's/util\.py3_path/os.fsdecode/g' tests/_common.py - ''; - build-system = [ setuptools ]; @@ -67,7 +58,6 @@ buildPythonPackage rec { changelog = "https://github.com/adammillerio/beets-copyartifacts/releases/tag/${src.tag}"; license = lib.licenses.mit; inherit (beets-minimal.meta) platforms; - # Isn't compatible with beets >= 2.3 broken = true; }; }