biome: 1.9.2 -> 1.9.3
[NixPkgs.git] / pkgs / tools / backup / pyznap / default.nix
blobfcb3ee17cb5a41851ffbf2cabedfb7471a3f5859
1 { lib
2 , buildPythonApplication
3 , fetchPypi
4 , setuptools
5 }:
7 buildPythonApplication rec {
8   pname = "pyznap";
9   version = "1.6.0";
11   src = fetchPypi {
12     inherit pname version;
13     sha256 = "88bf1d6de2c11f14acbdfa01b61eb95c94f95d829ddebdaee3786b64ccb93ae3";
14   };
16   propagatedBuildInputs = [
17     setuptools
18   ];
20   # tests aren't included in the PyPI packages
21   doCheck = false;
23   meta = {
24     homepage = "https://github.com/yboetz/pyznap";
25     description = "ZFS snapshot tool written in python";
26     mainProgram = "pyznap";
27     license = with lib.licenses; [ gpl3 ];
28     maintainers = with lib.maintainers; [ rbrewer ];
29   };