Unverified Commit cb10e503 authored by Nick Cao's avatar Nick Cao Committed by GitHub
Browse files

python3Packages.specfile: 0.37.1 -> 0.38.0 (#479441)

parents 07740423 012c8f2d
Loading
Loading
Loading
Loading
+6 −6
Original line number Diff line number Diff line
@@ -10,16 +10,16 @@
  setuptools,
}:

buildPythonPackage rec {
buildPythonPackage (finalAttrs: {
  pname = "specfile";
  version = "0.37.1";
  version = "0.38.0";
  pyproject = true;

  src = fetchFromGitHub {
    owner = "packit";
    repo = "specfile";
    tag = version;
    hash = "sha256-phzvQs49AC9SbmcQHWprfjHssF0ughDJ9KKVnUEB/gg=";
    tag = finalAttrs.version;
    hash = "sha256-cqHQIzgxfWHSDIIx72RIwt0o3MEJHXRzMNSgQ0VCWms=";
  };

  build-system = [
@@ -46,8 +46,8 @@ buildPythonPackage rec {
  meta = {
    description = "Library for parsing and manipulating RPM spec files";
    homepage = "https://github.com/packit/specfile";
    changelog = "https://github.com/packit/specfile/blob/${src.tag}/CHANGELOG.md";
    changelog = "https://github.com/packit/specfile/blob/${finalAttrs.src.tag}/CHANGELOG.md";
    license = lib.licenses.mit;
    maintainers = with lib.maintainers; [ fab ];
  };
}
})