about summary refs log tree commit diff
path: root/pkgs/development/python-modules/rencode/default.nix
blob: 86192cbc29caad56e1b5c874922dcc868719cffe (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
28
29
30
31
32
33
34
35
36
37
38
{ lib
, buildPythonPackage
, fetchFromGitHub
, cython
, pytestCheckHook
}:

buildPythonPackage rec {
  pname = "rencode";
  version = "unstable-2021-08-10";

  format = "setuptools";

  src = fetchFromGitHub {
    owner = "aresch";
    repo = "rencode";
    rev = "572ff74586d9b1daab904c6f7f7009ce0143bb75";
    hash = "sha256-cL1hV3RMDuSdcjpPXXDYIEbzQrxiPeRs82PU8HTEQYk=";
  };

  nativeBuildInputs = [ cython ];

  checkInputs = [
    pytestCheckHook
  ];

  preCheck = ''
    # import from $out
    rm -r rencode
  '';

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