at master 1.2 kB view raw
1{ 2 lib, 3 buildPythonPackage, 4 fetchFromGitHub, 5 isPyPy, 6 setuptools, 7 filetype, 8 deprecation, 9}: 10 11buildPythonPackage rec { 12 version = "0.9.8"; 13 pname = "eyed3"; 14 pyproject = true; 15 16 disabled = isPyPy; 17 18 src = fetchFromGitHub { 19 owner = "nicfit"; 20 repo = "eyeD3"; 21 tag = "v${version}"; 22 hash = "sha256-erjTgHjtrUMBj09/s3sZzct6Tg979a16a4fVGnwT0qk="; 23 }; 24 25 build-system = [ setuptools ]; 26 27 dependencies = [ 28 deprecation 29 filetype 30 ]; 31 32 # requires special test data: 33 # https://github.com/nicfit/eyeD3/blob/103198e265e3279384f35304e8218be6717c2976/Makefile#L97 34 doCheck = false; 35 36 meta = with lib; { 37 description = "Python module and command line program for processing ID3 tags"; 38 mainProgram = "eyeD3"; 39 downloadPage = "https://github.com/nicfit/eyeD3"; 40 homepage = "https://eyed3.nicfit.net/"; 41 license = licenses.gpl2; 42 maintainers = with maintainers; [ lovek323 ]; 43 platforms = platforms.unix; 44 longDescription = '' 45 eyeD3 is a Python module and command line program for processing ID3 46 tags. Information about mp3 files (i.e bit rate, sample frequency, play 47 time, etc.) is also provided. The formats supported are ID3 v1.0/v1.1 48 and v2.3/v2.4. 49 ''; 50 }; 51}