lol
0
fork

Configure Feed

Select the types of activity you want to include in your feed.

python313Packages.mediafile: 0.12.0 -> 0.13.0

Diff: beetbox/mediafile@refs/tags/v0.12.0...v0.13.0

Changelog: https://github.com/beetbox/mediafile/releases/tag/v0.13.0

+11 -10
+11 -10
pkgs/development/python-modules/mediafile/default.nix
··· 3 3 buildPythonPackage, 4 4 fetchFromGitHub, 5 5 flit-core, 6 + filetype, 6 7 mutagen, 7 8 pytestCheckHook, 8 9 pythonOlder, 9 - six, 10 10 }: 11 11 12 12 buildPythonPackage rec { 13 13 pname = "mediafile"; 14 - version = "0.12.0"; 15 - format = "pyproject"; 14 + version = "0.13.0"; 15 + pyproject = true; 16 16 17 - disabled = pythonOlder "3.6"; 17 + disabled = pythonOlder "3.7"; 18 18 19 19 src = fetchFromGitHub { 20 20 owner = "beetbox"; 21 - repo = pname; 22 - rev = "v${version}"; 23 - hash = "sha256-5HHfG1hCIbM/QSXgB61yHNNWJTsuyAh6CQJ7SZhZuvo="; 21 + repo = "mediafile"; 22 + tag = "v${version}"; 23 + hash = "sha256-Knp91nVPFkE2qYSZoWcOsMBNY+OBfWCPPNn+T1L8v0o="; 24 24 }; 25 25 26 - nativeBuildInputs = [ flit-core ]; 26 + build-system = [ flit-core ]; 27 27 28 - propagatedBuildInputs = [ 28 + dependencies = [ 29 + filetype 29 30 mutagen 30 - six 31 31 ]; 32 32 33 33 nativeCheckInputs = [ pytestCheckHook ]; ··· 37 37 meta = with lib; { 38 38 description = "Python interface to the metadata tags for many audio file formats"; 39 39 homepage = "https://github.com/beetbox/mediafile"; 40 + changelog = "https://github.com/beetbox/mediafile/releases/tag/${src.tag}"; 40 41 license = licenses.mit; 41 42 maintainers = with maintainers; [ lovesegfault ]; 42 43 };