summary refs log tree commit diff
path: root/pkgs/development/python-modules/rencode/default.nix
blob: 46f562ee5d6dd35fd7509961f0e1439264d4b669 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
{ stdenv
, buildPythonPackage
, isPy33
, fetchgit
, cython
}:

buildPythonPackage {
  pname = "rencode";
  version = "git20150810";
  disabled = isPy33;

  src = fetchgit {
    url = https://github.com/aresch/rencode;
    rev = "b45e04abdca0dea36e383a8199783269f186c99e";
    sha256 = "b4bd82852d4220e8a9493d3cfaecbc57b1325708a2d48c0f8acf262edb10dc40";
  };

  buildInputs = [ cython ];

  meta = with stdenv.lib; {
    homepage = https://github.com/aresch/rencode;
    description = "Fast (basic) object serialization similar to bencode";
    license = licenses.gpl3;
  };

}