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

44 lines
828 B
Nix

{
lib,
buildPythonPackage,
editdistance-s,
fetchFromGitHub,
pytestCheckHook,
pythonOlder,
setuptools,
ukkonen,
}:
buildPythonPackage rec {
pname = "identify";
version = "2.6.12";
pyproject = true;
disabled = pythonOlder "3.9";
src = fetchFromGitHub {
owner = "pre-commit";
repo = "identify";
tag = "v${version}";
hash = "sha256-zV9NRHFh/bfbg+pO0xX5aXunc1y4aGfKDugyCFLj/xA=";
};
build-system = [ setuptools ];
dependencies = [
editdistance-s
pytestCheckHook
ukkonen
];
pythonImportsCheck = [ "identify" ];
meta = with lib; {
description = "File identification library for Python";
homepage = "https://github.com/chriskuehl/identify";
license = licenses.mit;
maintainers = with maintainers; [ fab ];
mainProgram = "identify-cli";
};
}