pyznap: init at 1.1.2
This commit is contained in:
parent
2d6f84c109
commit
25ebdc186e
|
@ -3773,6 +3773,11 @@
|
||||||
github = "rbasso";
|
github = "rbasso";
|
||||||
name = "Rafael Basso";
|
name = "Rafael Basso";
|
||||||
};
|
};
|
||||||
|
rbrewer = {
|
||||||
|
email = "rwb123@gmail.com";
|
||||||
|
github = "rbrewer123";
|
||||||
|
name = "Rob Brewer";
|
||||||
|
};
|
||||||
rdnetto = {
|
rdnetto = {
|
||||||
email = "rdnetto@gmail.com";
|
email = "rdnetto@gmail.com";
|
||||||
github = "rdnetto";
|
github = "rdnetto";
|
||||||
|
|
|
@ -0,0 +1,28 @@
|
||||||
|
{ lib
|
||||||
|
, buildPythonApplication
|
||||||
|
, fetchPypi
|
||||||
|
, paramiko
|
||||||
|
, configparser
|
||||||
|
}:
|
||||||
|
|
||||||
|
buildPythonApplication rec {
|
||||||
|
pname = "pyznap";
|
||||||
|
version = "1.1.2";
|
||||||
|
|
||||||
|
src = fetchPypi {
|
||||||
|
inherit pname version;
|
||||||
|
sha256 = "9ac0da5d7f6461d1d6f128362786e297144b415f9e3a2f1835642ab3dda82d55";
|
||||||
|
};
|
||||||
|
|
||||||
|
propagatedBuildInputs = [ configparser paramiko ];
|
||||||
|
|
||||||
|
# tests aren't included in the PyPI packages
|
||||||
|
doCheck = false;
|
||||||
|
|
||||||
|
meta = {
|
||||||
|
homepage = "https://github.com/yboetz/pyznap";
|
||||||
|
description = "ZFS snapshot tool written in python";
|
||||||
|
license = with lib.licenses; [ gpl3 ];
|
||||||
|
maintainers = with lib.maintainers; [ rbrewer ];
|
||||||
|
};
|
||||||
|
}
|
|
@ -1579,6 +1579,8 @@ in
|
||||||
|
|
||||||
pyCA = python3Packages.callPackage ../applications/video/pyca {};
|
pyCA = python3Packages.callPackage ../applications/video/pyca {};
|
||||||
|
|
||||||
|
pyznap = python3Packages.callPackage ../tools/backup/pyznap {};
|
||||||
|
|
||||||
scour = with python3Packages; toPythonApplication scour;
|
scour = with python3Packages; toPythonApplication scour;
|
||||||
|
|
||||||
s2png = callPackage ../tools/graphics/s2png { };
|
s2png = callPackage ../tools/graphics/s2png { };
|
||||||
|
|
Loading…
Reference in New Issue