blob: a8a4b207875dc1c713bd48d5447ccb71c6043151 (
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
|
{
lib,
buildPythonPackage,
fetchFromGitHub,
hatchling,
normality,
pytestCheckHook,
}:
buildPythonPackage rec {
pname = "fingerprints";
version = "1.3.1";
pyproject = true;
src = fetchFromGitHub {
owner = "alephdata";
repo = "fingerprints";
tag = version;
hash = "sha256-Q+XCsuGMHPtOqB0SauVuYInR5FGMuG6aNhqiAwTJvSI=";
};
build-system = [ hatchling ];
dependencies = [ normality ];
nativeCheckInputs = [ pytestCheckHook ];
pythonImportsCheck = [ "fingerprints" ];
meta = {
description = "Library to generate entity fingerprints";
homepage = "https://github.com/alephdata/fingerprints";
license = lib.licenses.mit;
maintainers = [ ];
};
}
|