Unverified Commit 283d16df authored by Fabian Affolter's avatar Fabian Affolter Committed by GitHub
Browse files

python3Packages.compit-inext-api: 0.3.4 -> 0.5.0 (#483298)

parents 48698d12 d1231dce
Loading
Loading
Loading
Loading
+6 −5
Original line number Diff line number Diff line
@@ -7,16 +7,16 @@
  setuptools,
}:

buildPythonPackage rec {
buildPythonPackage (finalAttrs: {
  pname = "compit-inext-api";
  version = "0.3.4";
  version = "0.5.0";
  pyproject = true;

  src = fetchFromGitHub {
    owner = "Przemko92";
    repo = "compit-inext-api";
    tag = version;
    hash = "sha256-J3V7ahETbCTJW/6jYvF9BbuIffVvbMH329nO1bmVKEw=";
    tag = finalAttrs.version;
    hash = "sha256-DlNkDfV3fp/7DetiIDx3yi8SfJHV4sFIMHEam5rcYrg=";
  };

  build-system = [ setuptools ];
@@ -34,7 +34,8 @@ buildPythonPackage rec {
  meta = {
    description = "Python client for the Compit iNext API";
    homepage = "https://github.com/Przemko92/compit-inext-api";
    changelog = "https://github.com/Przemko92/compit-inext-api/releases/tag/${finalAttrs.src.tag}";
    license = lib.licenses.asl20;
    maintainers = [ lib.maintainers.dotlambda ];
  };
}
})