borgbackup: 1.1.4 -> 1.1.5
This commit is contained in:
parent
fbd70f4f21
commit
7513208cd3
@ -1,16 +1,19 @@
|
|||||||
{ stdenv, fetchurl, python3Packages, acl, lz4, openssl, openssh }:
|
{ stdenv, python3Packages, acl, lz4, openssl, openssh }:
|
||||||
|
|
||||||
python3Packages.buildPythonApplication rec {
|
python3Packages.buildPythonApplication rec {
|
||||||
name = "borgbackup-${version}";
|
pname = "borgbackup";
|
||||||
version = "1.1.4";
|
version = "1.1.5";
|
||||||
namePrefix = "";
|
|
||||||
|
|
||||||
src = fetchurl {
|
src = python3Packages.fetchPypi {
|
||||||
url = "https://github.com/borgbackup/borg/releases/download/"
|
inherit pname version;
|
||||||
+ "${version}/${name}.tar.gz";
|
sha256 = "4356e6c712871f389e3cb1d6382e341ea635f9e5c65de1cd8fcd103d0fb66d3d";
|
||||||
sha256 = "1cicqwh85wfp65y00qaq6q4i4jcyy9b66qz5gpl80qc880wab912";
|
|
||||||
};
|
};
|
||||||
|
|
||||||
|
postPatch = ''
|
||||||
|
# loosen constraint on msgpack version, only 0.5.0 had problems
|
||||||
|
sed -i "s/'msgpack-python.*'/'msgpack-python'/g" setup.py
|
||||||
|
'';
|
||||||
|
|
||||||
nativeBuildInputs = with python3Packages; [
|
nativeBuildInputs = with python3Packages; [
|
||||||
# For building documentation:
|
# For building documentation:
|
||||||
sphinx guzzle_sphinx_theme
|
sphinx guzzle_sphinx_theme
|
||||||
|
Loading…
Reference in New Issue
Block a user