11 buildPythonPackage rec {
12 pname = "fingerprints";
16 disabled = pythonOlder "3.7";
18 src = fetchFromGitHub {
20 repo = "fingerprints";
22 hash = "sha256-U2UslCy1OagVTtllCKsEBX4zI/qIczbxs2Cxzy+/Xys=";
25 nativeBuildInputs = [ setuptools ];
27 propagatedBuildInputs = [ normality ];
29 nativeCheckInputs = [ pytestCheckHook ];
31 pythonImportsCheck = [ "fingerprints" ];
34 description = "Library to generate entity fingerprints";
35 homepage = "https://github.com/alephdata/fingerprints";
36 license = licenses.mit;