1{ buildPythonPackage
2, fetchPypi
3, lib
4, mutagen
5, six
6}:
7
8buildPythonPackage rec {
9 pname = "mediafile";
10 version = "0.8.1";
11
12 src = fetchPypi {
13 inherit pname version;
14 sha256 = "878ccc378b77f2d6c175abea135ea25631f28c722e01e1a051924d962ebea165";
15 };
16
17 propagatedBuildInputs = [ mutagen six ];
18
19 meta = with lib; {
20 description = "MediaFile is a simple interface to the metadata tags for many audio file formats.";
21 homepage = "https://github.com/beetbox/mediafile";
22 license = licenses.mit;
23 maintainers = with maintainers; [ lovesegfault ];
24 };
25}