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.
This commit is contained in:
Doron Behar
2026-02-22 13:54:39 +02:00
parent 59b04b8f07
commit 482a283138
@@ -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
# <https://github.com/beetbox/beets/commit/0e87389994a9969fa0930ffaa607609d02e286a8>
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;
};
}