about summary refs log tree commit diff
path: root/nixpkgs/pkgs/development/python-modules/mediafile/default.nix
blob: a90b3868eb00291a1d0f0bd43d827a352bfdfb6d (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
{ buildPythonPackage
, fetchPypi
, lib
, mutagen
, six
}:

buildPythonPackage rec {
  pname = "mediafile";
  version = "0.8.1";

  src = fetchPypi {
    inherit pname version;
    sha256 = "878ccc378b77f2d6c175abea135ea25631f28c722e01e1a051924d962ebea165";
  };

  propagatedBuildInputs = [ mutagen six ];

  meta = with lib; {
    description = "MediaFile is a simple interface to the metadata tags for many audio file formats.";
    homepage = "https://github.com/beetbox/mediafile";
    license = licenses.mit;
    maintainers = with maintainers; [ lovesegfault ];
  };
}