github-backup: 0.45.2 -> 0.46.0 (#341975)

This commit is contained in:
Artturin 2024-09-15 17:49:28 +03:00 committed by GitHub
commit 684df59969
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -1,21 +1,23 @@
{ lib
, python3
, fetchPypi
, python3Packages
, fetchFromGitHub
, git
, git-lfs
}:
python3.pkgs.buildPythonApplication rec {
python3Packages.buildPythonApplication rec {
pname = "github-backup";
version = "0.45.2";
version = "0.46.0";
pyproject = true;
src = fetchPypi {
inherit pname version;
hash = "sha256-wn2JRMLfqhhTREeYM+mcs68xlkRWKMlxKXToa83pu2g=";
src = fetchFromGitHub {
owner = "josegonzalez";
repo = "python-github-backup";
rev = "refs/tags/${version}";
hash = "sha256-kSxkD8vWBvaT7C0sS9rs3CEP2yeWsAJ0kjPlrGezoLU=";
};
nativeBuildInputs = with python3.pkgs; [
build-system = with python3Packages; [
setuptools
];