Merge master into staging-next

This commit is contained in:
Frederik Rietdijk
2019-02-18 14:18:04 +01:00
118 changed files with 9944 additions and 3179 deletions

View File

@@ -2,13 +2,13 @@
stdenv.mkDerivation rec {
name = "easysnap-${version}";
version = "unstable-2018-11-20";
version = "unstable-2019-02-17";
src = fetchFromGitHub {
owner = "sjau";
repo = "easysnap";
rev = "dbf58c06a339cb040dbdcaf7e6ffec5af4add3c7";
sha256 = "0rvikmj2k103ffgnvkway8n6ajq0vzwcxb4l5vhka1hqh8047lam";
rev = "9ef5d1ff51ccf9939a88b7b32b4959d27cf61ecc";
sha256 = "0m0217ni909nham15w5vxg8y7cw2zwjibnhvgnpxxsap8zkhv1m4";
};
installPhase = ''

View File

@@ -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 ];
};
}