Unverified Commit 0fa1fd9b authored by Fabian Affolter's avatar Fabian Affolter Committed by GitHub
Browse files

python3Packages.mediafile: 0.14.0 -> 0.16.0 (#507049)

parents 8a68aa84 c7af90de
Loading
Loading
Loading
Loading
+6 −6
Original line number Diff line number Diff line
@@ -8,16 +8,16 @@
  pytestCheckHook,
}:

buildPythonPackage rec {
buildPythonPackage (finalAttrs: {
  pname = "mediafile";
  version = "0.14.0";
  version = "0.16.0";
  pyproject = true;

  src = fetchFromGitHub {
    owner = "beetbox";
    repo = "mediafile";
    tag = "v${version}";
    hash = "sha256-D5LRGncdeGcmJkrHVvI2cevov4SFO0wuhLxMqP+Ryb8=";
    tag = "v${finalAttrs.version}";
    hash = "sha256-GKEm2LKR3F9uy3FdhvpLPE9Auca8+40Zp53yaLk45XE=";
  };

  build-system = [ poetry-core ];
@@ -34,8 +34,8 @@ buildPythonPackage rec {
  meta = {
    description = "Python interface to the metadata tags for many audio file formats";
    homepage = "https://github.com/beetbox/mediafile";
    changelog = "https://github.com/beetbox/mediafile/releases/tag/${src.tag}";
    changelog = "https://github.com/beetbox/mediafile/releases/tag/${finalAttrs.src.tag}";
    license = lib.licenses.mit;
    maintainers = with lib.maintainers; [ lovesegfault ];
  };
}
})