2021-01-25 08:26:54 +00:00
|
|
|
{ lib
|
2018-10-26 15:58:32 +00:00
|
|
|
, buildPythonPackage
|
|
|
|
, fetchgit
|
|
|
|
, cython
|
|
|
|
}:
|
|
|
|
|
2019-08-13 21:52:01 +00:00
|
|
|
buildPythonPackage {
|
2018-10-26 15:58:32 +00:00
|
|
|
pname = "rencode";
|
|
|
|
version = "git20150810";
|
|
|
|
|
|
|
|
src = fetchgit {
|
2020-04-01 01:11:51 +00:00
|
|
|
url = "https://github.com/aresch/rencode";
|
2018-10-26 15:58:32 +00:00
|
|
|
rev = "b45e04abdca0dea36e383a8199783269f186c99e";
|
|
|
|
sha256 = "b4bd82852d4220e8a9493d3cfaecbc57b1325708a2d48c0f8acf262edb10dc40";
|
|
|
|
};
|
|
|
|
|
|
|
|
buildInputs = [ cython ];
|
|
|
|
|
2021-01-11 07:54:33 +00:00
|
|
|
meta = with lib; {
|
2020-04-01 01:11:51 +00:00
|
|
|
homepage = "https://github.com/aresch/rencode";
|
2018-10-26 15:58:32 +00:00
|
|
|
description = "Fast (basic) object serialization similar to bencode";
|
|
|
|
license = licenses.gpl3;
|
|
|
|
};
|
|
|
|
|
|
|
|
}
|