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

Merge pull request #220672 from fabaff/flipr-api-bump

python310Packages.flipr-api: 1.4.4 -> 1.5.0
parents 8f1e87b4 00e4dc8b
Loading
Loading
Loading
Loading
+4 −3
Original line number Diff line number Diff line
@@ -12,7 +12,7 @@

buildPythonPackage rec {
  pname = "flipr-api";
  version = "1.4.4";
  version = "1.5.0";
  format = "pyproject";

  disabled = pythonOlder "3.6";
@@ -20,8 +20,8 @@ buildPythonPackage rec {
  src = fetchFromGitHub {
    owner = "cnico";
    repo = pname;
    rev = version;
    sha256 = "sha256-LcxLJQ2MAif4yC+/SvO7IEa1lNOV67FgJU1UWT4ope4=";
    rev = "refs/tags/${version}";
    hash = "sha256-IAxB3i/HkwO5sjDh2aBCtijOcG0VIbatQjTWIh0inoM=";
  };

  nativeBuildInputs = [
@@ -46,6 +46,7 @@ buildPythonPackage rec {
  meta = with lib; {
    description = "Python client for Flipr API";
    homepage = "https://github.com/cnico/flipr-api";
    changelog = "https://github.com/cnico/flipr-api/releases/tag/${version}";
    license = licenses.mit;
    maintainers = with maintainers; [ fab ];
  };