Merge pull request #249005 from felipeqq2/update/beets-copyartifacts

beetsPackages.copyartifacts: unstable-2020-02-15 -> 0.1.5
This commit is contained in:
Guillaume Girol 2023-12-31 14:39:59 +01:00 committed by GitHub
commit 9d273983f8
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -1,14 +1,14 @@
{ lib, fetchFromGitHub, beets, python3Packages }:
python3Packages.buildPythonApplication {
python3Packages.buildPythonApplication rec {
pname = "beets-copyartifacts";
version = "unstable-2020-02-15";
version = "0.1.5";
src = fetchFromGitHub {
repo = "beets-copyartifacts";
owner = "adammillerio";
rev = "85eefaebf893cb673fa98bfde48406ec99fd1e4b";
sha256 = "sha256-bkT2BZZ2gdcacgvyrVe2vMrOMV8iMAm8Q5xyrZzyqU0=";
rev = "v${version}";
sha256 = "sha256-UTZh7T6Z288PjxFgyFxHnPt0xpAH3cnr8/jIrlJhtyU=";
};
postPatch = ''
@ -27,7 +27,7 @@ python3Packages.buildPythonApplication {
meta = {
description = "Beets plugin to move non-music files during the import process";
homepage = "https://github.com/sbarakat/beets-copyartifacts";
homepage = "https://github.com/adammillerio/beets-copyartifacts";
license = lib.licenses.mit;
inherit (beets.meta) platforms;
};