f34ce41345
GitOrigin-RevId: b73c2221a46c13557b1b3be9c2070cc42cf01eb3
43 lines
837 B
Nix
43 lines
837 B
Nix
{
|
|
lib,
|
|
buildPythonPackage,
|
|
editdistance-s,
|
|
fetchFromGitHub,
|
|
pytestCheckHook,
|
|
pythonOlder,
|
|
setuptools,
|
|
ukkonen,
|
|
}:
|
|
|
|
buildPythonPackage rec {
|
|
pname = "identify";
|
|
version = "2.6.0";
|
|
pyproject = true;
|
|
|
|
disabled = pythonOlder "3.8";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "pre-commit";
|
|
repo = "identify";
|
|
rev = "refs/tags/v${version}";
|
|
hash = "sha256-ZusDe675QdQyiiGSdmWT+l1jGEGXEY+Dobm4y20WWX8=";
|
|
};
|
|
|
|
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";
|
|
};
|
|
}
|