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