2018-05-08 11:31:35 +02:00
|
|
|
{ stdenv, fetchFromGitHub, pythonPackages }:
|
|
|
|
|
|
|
|
let
|
|
|
|
pname = "yrd";
|
|
|
|
version = "0.5.3";
|
|
|
|
sha256 = "1yx1hr8z4cvlb3yi24dwafs0nxq41k4q477jc9q24w61a0g662ps";
|
|
|
|
|
|
|
|
in pythonPackages.buildPythonApplication {
|
|
|
|
name = "${pname}-${version}";
|
|
|
|
|
|
|
|
src = fetchFromGitHub {
|
|
|
|
owner = "kpcyrd";
|
2019-09-09 01:38:31 +02:00
|
|
|
repo = pname;
|
2018-05-08 11:31:35 +02:00
|
|
|
rev = "v${version}";
|
|
|
|
inherit sha256;
|
|
|
|
};
|
|
|
|
|
|
|
|
propagatedBuildInputs = with pythonPackages; [ argh ];
|
|
|
|
|
|
|
|
meta = with stdenv.lib; {
|
|
|
|
description = "Cjdns swiss army knife";
|
|
|
|
maintainers = with maintainers; [ akru ];
|
|
|
|
platforms = platforms.linux;
|
|
|
|
license = licenses.gpl3;
|
|
|
|
homepage = https://github.com/kpcyrd/yrd;
|
|
|
|
};
|
|
|
|
}
|