summary refs log tree commit diff
path: root/pkgs/development/python-modules/rencode/default.nix
blob: a8f0f81ee71dd150eadc3fad906ec68078df73a1 (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
{ lib, stdenv
, buildPythonPackage
, fetchgit
, cython
}:

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

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

  buildInputs = [ cython ];

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

}