biome: 1.9.2 -> 1.9.3
[NixPkgs.git] / pkgs / tools / networking / xxh / default.nix
blobeba8abbf790595a75354eee53800745db1029855
1 { lib
2 , fetchFromGitHub
3 , python3
4 , openssh
5 , nixosTests
6 }:
8 python3.pkgs.buildPythonApplication rec{
9   pname = "xxh";
10   version = "0.8.12";
11   format = "setuptools";
13   disabled = python3.pkgs.pythonOlder "3.6";
15   src = fetchFromGitHub {
16     owner = pname;
17     repo = pname;
18     rev = "refs/tags/${version}";
19     hash = "sha256-3/AU2o72X7FE11NSXC6m9fFhmjzEDZ+OpTXg8yvv62A=";
20   };
22   propagatedBuildInputs = [
23     python3.pkgs.pexpect
24     python3.pkgs.pyyaml
25     openssh
26   ];
28   passthru.tests = {
29     inherit (nixosTests) xxh;
30   };
32   meta = with lib; {
33     description = "Bring your favorite shell wherever you go through SSH";
34     homepage = "https://github.com/xxh/xxh";
35     license = licenses.bsd2;
36     maintainers = with maintainers; [ pasqui23 ];
37   };