Merge pull request #119844 from lovesegfault/beets-2021-04-17

beets: assorted updates
This commit is contained in:
Bernardo Meurer 2021-04-19 06:56:26 +00:00 committed by GitHub
commit dcd8ba2030
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
4 changed files with 19 additions and 16 deletions

View File

@ -105,13 +105,13 @@ in pythonPackages.buildPythonApplication rec {
# unstable does not require bs1770gain[2]. # unstable does not require bs1770gain[2].
# [1]: https://discourse.beets.io/t/forming-a-beets-core-team/639 # [1]: https://discourse.beets.io/t/forming-a-beets-core-team/639
# [2]: https://github.com/NixOS/nixpkgs/pull/90504 # [2]: https://github.com/NixOS/nixpkgs/pull/90504
version = "unstable-2021-03-24"; version = "unstable-2021-04-17";
src = fetchFromGitHub { src = fetchFromGitHub {
owner = "beetbox"; owner = "beetbox";
repo = "beets"; repo = "beets";
rev = "854b4ab48324afe8884fcd11fa47bd6258d2f4f7"; rev = "50163b373f527d1b1f8b2442240ca547e846744e";
sha256 = "sha256-y5EWVNF4bd9fNvU6VkucMpenyFZuqdPkrqQDgG9ZPJY="; sha256 = "sha256-l7drav4Qx2JCF+F5OA0s641idcKM3S4Yx2lM2evJQWE=";
}; };
propagatedBuildInputs = [ propagatedBuildInputs = [

View File

@ -2,13 +2,13 @@
pythonPackages.buildPythonApplication rec { pythonPackages.buildPythonApplication rec {
pname = "beets-alternatives"; pname = "beets-alternatives";
version = "0.10.2"; version = "unstable-2021-02-01";
src = fetchFromGitHub { src = fetchFromGitHub {
repo = "beets-alternatives"; repo = "beets-alternatives";
owner = "geigerzaehler"; owner = "geigerzaehler";
rev = "v${version}"; rev = "288299e3aa9a1602717b04c28696fce5ce4259bf";
sha256 = "1dsz94fb29wra1f9580w20bz2f1bgkj4xnsjgwgbv14flbfw4bp0"; sha256 = "sha256-Xl7AHr33hXQqQDuFbWuj8HrIugeipJFPmvNXpCkU/mI=";
}; };
postPatch = '' postPatch = ''
@ -23,10 +23,10 @@ pythonPackages.buildPythonApplication rec {
mock mock
]; ];
meta = { meta = with lib; {
description = "Beets plugin to manage external files"; description = "Beets plugin to manage external files";
homepage = "https://github.com/geigerzaehler/beets-alternatives"; homepage = "https://github.com/geigerzaehler/beets-alternatives";
maintainers = [ lib.maintainers.aszlig ]; maintainers = with maintainers; [ aszlig lovesegfault ];
license = lib.licenses.mit; license = licenses.mit;
}; };
} }

View File

@ -1,13 +1,14 @@
{ lib, fetchFromGitHub, beets, pythonPackages, glibcLocales }: { lib, fetchFromGitHub, beets, pythonPackages, glibcLocales }:
pythonPackages.buildPythonApplication { pythonPackages.buildPythonApplication {
name = "beets-copyartifacts"; pname = "beets-copyartifacts";
version = "unstable-2020-02-15";
src = fetchFromGitHub { src = fetchFromGitHub {
repo = "beets-copyartifacts"; repo = "beets-copyartifacts";
owner = "sbarakat"; owner = "adammillerio";
rev = "d0bb75c8fc8fe125e8191d73de7ade6212aec0fd"; rev = "85eefaebf893cb673fa98bfde48406ec99fd1e4b";
sha256 = "19b4lqq1p45n348ssmql60jylw2fw7vfj9j22nly5qj5qx51j3g5"; sha256 = "sha256-bkT2BZZ2gdcacgvyrVe2vMrOMV8iMAm8Q5xyrZzyqU0=";
}; };
postPatch = '' postPatch = ''

View File

@ -2,13 +2,13 @@
pythonPackages.buildPythonApplication rec { pythonPackages.buildPythonApplication rec {
pname = "beets-extrafiles"; pname = "beets-extrafiles";
version = "0.0.7"; version = "unstable-2020-12-13";
src = fetchFromGitHub { src = fetchFromGitHub {
repo = "beets-extrafiles"; repo = "beets-extrafiles";
owner = "Holzhaus"; owner = "Holzhaus";
rev = "v${version}"; rev = "a1d6ef9a9682b6bf7af9483541e56a3ff12247b8";
sha256 = "0ah7mgax9zrhvvd5scf2z0v0bhd6xmmv5sdb6av840ixpl6vlvm6"; sha256 = "sha256-ajuEbieWjTCNjdRZuGUwvStZwjx260jmY0m+ZqNd7ec=";
}; };
postPatch = '' postPatch = ''
@ -18,6 +18,8 @@ pythonPackages.buildPythonApplication rec {
nativeBuildInputs = [ beets ]; nativeBuildInputs = [ beets ];
propagatedBuildInputs = with pythonPackages; [ mediafile ];
preCheck = '' preCheck = ''
HOME=$TEMPDIR HOME=$TEMPDIR
''; '';