silx: 2.1.1 -> 2.1.2 (#361612)
[NixPkgs.git] / pkgs / development / python-modules / mutagen / default.nix
blobc66f33c6d9889f51902da3d5e62e3055bac4271d
2   lib,
3   buildPythonPackage,
4   pythonOlder,
5   fetchPypi,
7   # build-system
8   setuptools,
10   # docs
11   python,
12   sphinx,
13   sphinx-rtd-theme,
15   # tests
16   hypothesis,
17   pytestCheckHook,
20 buildPythonPackage rec {
21   pname = "mutagen";
22   version = "1.47.0";
23   format = "pyproject";
25   disabled = pythonOlder "3.7";
27   src = fetchPypi {
28     inherit pname version;
29     hash = "sha256-cZ+t7wqXjDG0zzyVYmGzxYtpSLMgIweKIRex3gnw/Jk=";
30   };
32   outputs = [
33     "out"
34     "doc"
35   ];
37   nativeBuildInputs = [
38     setuptools
39     sphinx
40     sphinx-rtd-theme
41   ];
43   postInstall = ''
44     ${python.pythonOnBuildForHost.interpreter} setup.py build_sphinx --build-dir=$doc
45   '';
47   nativeCheckInputs = [
48     hypothesis
49     pytestCheckHook
50   ];
52   disabledTests = [
53     # Hypothesis produces unreliable results: Falsified on the first call but did not on a subsequent one
54     "test_test_fileobj_save"
55     "test_test_fileobj_load"
56     "test_test_fileobj_delete"
57     "test_mock_fileobj"
58   ];
60   pythonImportsCheck = [ "mutagen" ];
62   meta = with lib; {
63     description = "Python module for handling audio metadata";
64     longDescription = ''
65       Mutagen is a Python module to handle audio metadata. It supports
66       ASF, FLAC, MP4, Monkey's Audio, MP3, Musepack, Ogg Opus, Ogg FLAC,
67       Ogg Speex, Ogg Theora, Ogg Vorbis, True Audio, WavPack, OptimFROG,
68       and AIFF audio files. All versions of ID3v2 are supported, and all
69       standard ID3v2.4 frames are parsed. It can read Xing headers to
70       accurately calculate the bitrate and length of MP3s. ID3 and APEv2
71       tags can be edited regardless of audio format. It can also
72       manipulate Ogg streams on an individual packet/page level.
73     '';
74     homepage = "https://mutagen.readthedocs.io";
75     changelog = "https://mutagen.readthedocs.io/en/latest/changelog.html#release-${
76       lib.replaceStrings [ "." ] [ "-" ] version
77     }";
78     license = licenses.gpl2Plus;
79     maintainers = [ ];
80   };