nixpkgs/pkgs/applications/audio/whipper/default.nix

63 lines
1.4 KiB
Nix
Raw Normal View History

2019-12-14 03:21:44 +00:00
{ stdenv, fetchFromGitHub, python3, cdparanoia, cdrdao, flac
, sox, accuraterip-checksum, libsndfile, utillinux, substituteAll }:
2019-12-14 03:21:44 +00:00
python3.pkgs.buildPythonApplication rec {
pname = "whipper";
2019-12-16 15:45:55 +00:00
version = "0.9.1.dev7+g${stdenv.lib.substring 0 7 src.rev}";
src = fetchFromGitHub {
2018-10-21 21:40:33 +00:00
owner = "whipper-team";
repo = "whipper";
2019-12-16 15:45:55 +00:00
rev = "9e95f0604fa30ab06445fe46e3bc93bba6092a05";
sha256 = "1c2qldw9vxpvdfh5wl6mfcd7zzz3v8r86ffqll311lcp2zin33dg";
};
2019-12-14 03:21:44 +00:00
pythonPath = with python3.pkgs; [
2019-12-16 15:45:55 +00:00
musicbrainzngs
mutagen
pycdio
pygobject3
requests
2019-12-16 15:45:55 +00:00
ruamel_yaml
setuptools
setuptools_scm
];
2019-12-14 03:21:44 +00:00
buildInputs = [ libsndfile ];
checkInputs = with python3.pkgs; [
twisted
];
patches = [
(substituteAll {
src = ./paths.patch;
2018-12-01 00:35:25 +00:00
inherit cdparanoia;
})
];
2018-12-01 00:35:25 +00:00
makeWrapperArgs = [
2019-09-08 23:38:31 +00:00
"--prefix" "PATH" ":" (stdenv.lib.makeBinPath [ accuraterip-checksum cdrdao utillinux flac sox ])
2018-12-01 00:35:25 +00:00
];
2019-12-14 03:21:44 +00:00
preBuild = ''
2019-12-16 15:45:55 +00:00
export SETUPTOOLS_SCM_PRETEND_VERSION="${version}"
2019-12-14 03:21:44 +00:00
'';
# some tests require internet access
# https://github.com/JoeLametta/whipper/issues/291
doCheck = false;
preCheck = ''
HOME=$TMPDIR
'';
meta = with stdenv.lib; {
homepage = "https://github.com/whipper-team/whipper";
description = "A CD ripper aiming for accuracy over speed";
2019-12-14 03:21:44 +00:00
maintainers = with maintainers; [ rycee emily ];
license = licenses.gpl3Plus;
platforms = platforms.linux;
};
}