1{ lib 2, fetchFromGitHub 3, buildPythonPackage 4, normality 5, pytestCheckHook 6}: 7buildPythonPackage rec { 8 pname = "fingerprints"; 9 version = "1.1.0"; 10 11 src = fetchFromGitHub { 12 owner = "alephdata"; 13 repo = "fingerprints"; 14 rev = version; 15 hash = "sha256-rptBM08dvivfglPvl3PZd9V/7u2SHbJ/BxfVHNGMt3A="; 16 }; 17 18 propagatedBuildInputs = [ 19 normality 20 ]; 21 22 nativeCheckInputs = [ 23 pytestCheckHook 24 ]; 25 26 pythonImportsCheck = [ 27 "fingerprints" 28 ]; 29 30 meta = with lib; { 31 description = "A library to generate entity fingerprints"; 32 homepage = "https://github.com/alephdata/fingerprints"; 33 license = licenses.mit; 34 maintainers = [ ]; 35 }; 36}