blob: 25112d0dab638499f53db1696b6a39d729450713 (
plain)
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
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
|
{
lib,
buildPythonPackage,
fetchFromGitHub,
cargo,
rustc,
rustPlatform,
setuptools,
setuptools-rust,
python,
}:
buildPythonPackage rec {
pname = "fastbencode";
version = "0.3.8";
pyproject = true;
src = fetchFromGitHub {
owner = "breezy-team";
repo = "fastbencode";
tag = "v${version}";
hash = "sha256-vpo8OVhIm9/niMY6A878FRJ+zU98z9CJe/p5UxmvrLo=";
};
cargoDeps = rustPlatform.fetchCargoVendor {
inherit pname version src;
hash = "sha256-N4diwjHZkJk+Tzu609ueRipfIXyNhXhLG7hpnG1gRa4=";
};
nativeBuildInputs = [
cargo
rustPlatform.cargoSetupHook
rustc
];
build-system = [
setuptools
setuptools-rust
];
pythonImportsCheck = [ "fastbencode" ];
checkPhase = ''
runHook preCheck
${python.interpreter} -m unittest tests.test_suite
runHook postCheck
'';
meta = {
description = "Fast implementation of bencode";
homepage = "https://github.com/breezy-team/fastbencode";
changelog = "https://github.com/breezy-team/fastbencode/releases/tag/v${version}";
license = lib.licenses.gpl2Plus;
maintainers = [ ];
};
}
|