nixpkgs/pkgs/tools/backup/pyznap/default.nix

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

30 lines
603 B
Nix
Raw Normal View History

2019-02-07 00:29:59 +01:00
{ lib
, buildPythonApplication
, fetchPypi
2019-10-14 00:53:29 +02:00
, setuptools
2019-02-07 00:29:59 +01:00
}:
buildPythonApplication rec {
pname = "pyznap";
2020-09-26 12:03:00 +02:00
version = "1.6.0";
2019-02-07 00:29:59 +01:00
src = fetchPypi {
inherit pname version;
2020-09-26 12:03:00 +02:00
sha256 = "88bf1d6de2c11f14acbdfa01b61eb95c94f95d829ddebdaee3786b64ccb93ae3";
2019-02-07 00:29:59 +01:00
};
2019-10-14 00:53:29 +02:00
propagatedBuildInputs = [
setuptools
2020-09-26 12:03:00 +02:00
];
2019-10-14 00:53:29 +02:00
2019-02-07 00:29:59 +01:00
# 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 ];
};
}