1{ lib
2, buildPythonPackage
3, fetchgit
4, cython
5}:
6
7buildPythonPackage {
8 pname = "rencode";
9 version = "git20150810";
10
11 src = fetchgit {
12 url = "https://github.com/aresch/rencode";
13 rev = "b45e04abdca0dea36e383a8199783269f186c99e";
14 sha256 = "b4bd82852d4220e8a9493d3cfaecbc57b1325708a2d48c0f8acf262edb10dc40";
15 };
16
17 buildInputs = [ cython ];
18
19 meta = with lib; {
20 homepage = "https://github.com/aresch/rencode";
21 description = "Fast (basic) object serialization similar to bencode";
22 license = licenses.gpl3;
23 };
24
25}