rio: 0.0.36 -> 0.0.37
[NixPkgs.git] / pkgs / tools / networking / yrd / default.nix
blob04fee4daf541b1cbfec89768a273a4de2234d86a
1 { lib
2 , python3
3 , fetchFromGitHub
4 }:
6 python3.pkgs.buildPythonApplication rec {
7   pname = "yrd";
8   version = "0.5.3";
10   src = fetchFromGitHub {
11     owner = "kpcyrd";
12     repo = pname;
13     rev = "v${version}";
14     sha256 = "1yx1hr8z4cvlb3yi24dwafs0nxq41k4q477jc9q24w61a0g662ps";
15   };
17   propagatedBuildInputs = with python3.pkgs; [
18     argh
19     requests
20   ];
22   nativeCheckInputs = with python3.pkgs; [
23     nose
24   ];
26   checkPhase = ''
27     nosetests -v yrd
28   '';
30   meta = with lib; {
31     description = "Cjdns swiss army knife";
32     maintainers = with maintainers; [ akru ];
33     platforms = platforms.linux;
34     license = licenses.gpl3Only;
35     homepage = "https://github.com/kpcyrd/yrd";
36   };