blob: 9f1d8b4ba7d986c1e34202cb75ea6f7bcda4c931 (
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
|
{
buildPythonPackage,
fetchFromGitHub,
gitUpdater,
lib,
pytestCheckHook,
pyyaml,
rustPlatform,
}:
buildPythonPackage rec {
pname = "ua-parser-rs";
version = "0.1.4";
format = "setuptools";
src = fetchFromGitHub {
owner = "ua-parser";
repo = "uap-rust";
tag = "ua-parser-rs-${version}";
hash = "sha256-8IU4NNW0v2zl6COtL6o7FALxqYNVKBGhERugxpXIN5g=";
fetchSubmodules = true;
};
cargoDeps = rustPlatform.fetchCargoVendor {
inherit pname version src;
hash = "sha256-PNkyd9/0DdIqEmXbnw3dZs5ajWSo0rLhjJwRu3H06Cc=";
};
buildAndTestSubdir = "ua-parser-py";
nativeBuildInputs = [
rustPlatform.cargoSetupHook
rustPlatform.maturinBuildHook
];
nativeCheckInputs = [
pytestCheckHook
pyyaml
];
passthru.updateScript = gitUpdater { rev-prefix = "ua-parser-rs-"; };
meta = {
description = "Native accelerator for ua-parser";
homepage = "https://github.com/ua-parser/uap-rust/tree/main/ua-parser-py";
license = lib.licenses.asl20;
maintainers = with lib.maintainers; [ dotlambda ];
};
}
|