c7cb07f092
GitOrigin-RevId: 1536926ef5621b09bba54035ae2bb6d806d72ac8
45 lines
816 B
Nix
45 lines
816 B
Nix
{ lib
|
|
, buildPythonPackage
|
|
, editdistance-s
|
|
, fetchFromGitHub
|
|
, pytestCheckHook
|
|
, pythonOlder
|
|
, setuptools
|
|
, ukkonen
|
|
}:
|
|
|
|
buildPythonPackage rec {
|
|
pname = "identify";
|
|
version = "2.5.35";
|
|
pyproject = true;
|
|
|
|
disabled = pythonOlder "3.8";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "pre-commit";
|
|
repo = "identify";
|
|
rev = "refs/tags/v${version}";
|
|
hash = "sha256-kUBAq9ttIdTLApJ0yW8Yk/NIXpmllApQGpR24wm0PHA=";
|
|
};
|
|
|
|
nativeBuildInputs = [
|
|
setuptools
|
|
];
|
|
|
|
nativeCheckInputs = [
|
|
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 ];
|
|
};
|
|
}
|