beets: 1.4.5 -> 1.4.6

This commit is contained in:
Frederik Rietdijk 2018-01-01 12:51:05 +01:00
parent 21db6f6af1
commit e5fab33efd
1 changed files with 4 additions and 3 deletions

View File

@ -95,13 +95,13 @@ let
in pythonPackages.buildPythonApplication rec { in pythonPackages.buildPythonApplication rec {
name = "beets-${version}"; name = "beets-${version}";
version = "1.4.5"; version = "1.4.6";
src = fetchFromGitHub { src = fetchFromGitHub {
owner = "beetbox"; owner = "beetbox";
repo = "beets"; repo = "beets";
rev = "v${version}"; rev = "v${version}";
sha256 = "0fvfp9ckq3dhs4f8abg9fprfppyf0g6mv8br2xz99plg4wnffzmy"; sha256 = "0m8macydkn1fp4ymig0rg7bzw77rrm454q763gxdpq2kg08yl5py";
}; };
propagatedBuildInputs = [ propagatedBuildInputs = [
@ -194,7 +194,8 @@ in pythonPackages.buildPythonApplication rec {
BEETS_TEST_SHELL="${testShell}" \ BEETS_TEST_SHELL="${testShell}" \
BASH_COMPLETION_SCRIPT="${completion}" \ BASH_COMPLETION_SCRIPT="${completion}" \
HOME="$(mktemp -d)" \ HOME="$(mktemp -d)" \
nosetests -v # Exclude failing test https://github.com/beetbox/beets/issues/2652
nosetests -v --exclude="test_single_month_nonmatch_"
runHook postCheck runHook postCheck
''; '';