Unverified Commit 97279180 authored by Kerstin Humm's avatar Kerstin Humm
Browse files

python3Packages.altcha: 1.0.0 -> 2.0.0

parent 1264073e
Loading
Loading
Loading
Loading
+5 −5
Original line number Diff line number Diff line
@@ -6,16 +6,16 @@
  pytestCheckHook,
}:

buildPythonPackage rec {
buildPythonPackage (finalAttrs: {
  pname = "altcha";
  version = "1.0.0";
  version = "2.0.0";
  pyproject = true;

  src = fetchFromGitHub {
    owner = "altcha-org";
    repo = "altcha-lib-py";
    tag = "v${version}";
    hash = "sha256-N30luHhGFkd+XvVKhVnR6degEf0Nm/K/GEaqoEEuZMU=";
    tag = "v${finalAttrs.version}";
    hash = "sha256-k5vy6lalC3idiquXbDCwF+mObzja/QC3PRBGQJMZ6fA=";
  };

  build-system = [ setuptools ];
@@ -30,4 +30,4 @@ buildPythonPackage rec {
    license = lib.licenses.mit;
    maintainers = with lib.maintainers; [ erictapen ];
  };
}
})