depot/third_party/nixpkgs/pkgs/development/python-modules/fingerprints/default.nix
Default email 9c6ee729d6 Project import generated by Copybara.
GitOrigin-RevId: 6cee3b5893090b0f5f0a06b4cf42ca4e60e5d222
2023-07-15 19:15:38 +02:00

36 lines
670 B
Nix

{ lib
, fetchFromGitHub
, buildPythonPackage
, normality
, pytestCheckHook
}:
buildPythonPackage rec {
pname = "fingerprints";
version = "1.1.0";
src = fetchFromGitHub {
owner = "alephdata";
repo = "fingerprints";
rev = version;
hash = "sha256-rptBM08dvivfglPvl3PZd9V/7u2SHbJ/BxfVHNGMt3A=";
};
propagatedBuildInputs = [
normality
];
nativeCheckInputs = [
pytestCheckHook
];
pythonImportsCheck = [
"fingerprints"
];
meta = with lib; {
description = "A library to generate entity fingerprints";
homepage = "https://github.com/alephdata/fingerprints";
license = licenses.mit;
maintainers = [ ];
};
}