Files
nixpkgs/pkgs/development/python-modules/fingerprints/default.nix

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

37 lines
715 B
Nix
Raw Normal View History

2025-10-09 14:15:47 +02:00
{
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 = with lib; {
description = "Library to generate entity fingerprints";
homepage = "https://github.com/alephdata/fingerprints";
license = licenses.mit;
maintainers = [ ];
};
}