2020-03-27 17:10:21 +00:00
|
|
|
{ lib, python3Packages, fetchFromGitHub }:
|
|
|
|
|
|
|
|
python3Packages.buildPythonApplication rec {
|
2020-11-18 23:42:36 +00:00
|
|
|
pname = "matrix-dl";
|
|
|
|
version = "unstable-2020-07-14";
|
2020-03-27 17:10:21 +00:00
|
|
|
|
|
|
|
src = fetchFromGitHub {
|
|
|
|
owner = "rubo77";
|
2020-11-18 23:42:36 +00:00
|
|
|
repo = pname;
|
|
|
|
rev = "b1a86d1421f39ee327284e1023f09dc165e3c8a5";
|
|
|
|
sha256 = "1l8nh8z7kz24v0wcy3ll3w6in2yxwa1yz8lyc3x0blz37d8ss4ql";
|
2020-03-27 17:10:21 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
propagatedBuildInputs = with python3Packages; [
|
|
|
|
matrix-client
|
|
|
|
];
|
|
|
|
|
|
|
|
meta = with lib; {
|
|
|
|
description = "Download backlogs from Matrix as raw text";
|
|
|
|
homepage = src.meta.homepage;
|
2020-03-29 14:29:18 +01:00
|
|
|
license = licenses.gpl1Plus;
|
2020-03-27 17:10:21 +00:00
|
|
|
maintainers = with maintainers; [ aw ];
|
|
|
|
platforms = platforms.unix;
|
|
|
|
};
|
|
|
|
}
|