beets: 2.5.0 -> 2.5.1 (#452251)
This commit is contained in:
@@ -103,6 +103,10 @@ python3Packages.buildPythonApplication {
|
||||
platformdirs
|
||||
pyyaml
|
||||
unidecode
|
||||
# Can be built without it, but is useful on btrfs systems, and doesn't
|
||||
# add too much to the closure. See:
|
||||
# https://github.com/NixOS/nixpkgs/issues/437308
|
||||
reflink
|
||||
typing-extensions
|
||||
lap
|
||||
]
|
||||
@@ -112,6 +116,8 @@ python3Packages.buildPythonApplication {
|
||||
gobject-introspection
|
||||
sphinxHook
|
||||
python3Packages.pydata-sphinx-theme
|
||||
python3Packages.sphinx-design
|
||||
python3Packages.sphinx-copybutton
|
||||
]
|
||||
++ extraNativeBuildInputs;
|
||||
|
||||
@@ -132,6 +138,12 @@ python3Packages.buildPythonApplication {
|
||||
"html"
|
||||
"man"
|
||||
];
|
||||
# Causes an installManPage error. Not clear why this directory gets generated
|
||||
# with the manpages. The same directory is observed correctly in
|
||||
# $doc/share/doc/beets-${version}/html
|
||||
preInstallSphinx = ''
|
||||
rm -r .sphinx/man/man/_sphinx_design_static
|
||||
'';
|
||||
|
||||
postInstall = ''
|
||||
mkdir -p $out/share/zsh/site-functions
|
||||
@@ -194,6 +206,9 @@ python3Packages.buildPythonApplication {
|
||||
"test_reject_different_art"
|
||||
# touches network
|
||||
"test_merge_duplicate_album"
|
||||
# The existence of the dependency reflink (see comment above), causes this
|
||||
# test to be run, and it fails in the sandbox.
|
||||
"test_successful_reflink"
|
||||
];
|
||||
|
||||
# Perform extra "sanity checks", before running pytest tests.
|
||||
|
||||
@@ -31,12 +31,12 @@ lib.makeExtensible (
|
||||
|
||||
beets-stable = callPackage ./common.nix rec {
|
||||
inherit python3Packages extraPatches;
|
||||
version = "2.5.0";
|
||||
version = "2.5.1";
|
||||
src = fetchFromGitHub {
|
||||
owner = "beetbox";
|
||||
repo = "beets";
|
||||
tag = "v${version}";
|
||||
hash = "sha256-YZvS9oB+v+48i1avQcs6ClnYz4aMqJQ2e6cBiZ4ULb0=";
|
||||
hash = "sha256-H3jcEHyK13+RHVlV4zp+8M3LZ0Jc2FdmAbLpekGozLA=";
|
||||
};
|
||||
};
|
||||
|
||||
|
||||
Reference in New Issue
Block a user