94427deb9d
GitOrigin-RevId: f91ee3065de91a3531329a674a45ddcb3467a650
40 lines
748 B
Nix
40 lines
748 B
Nix
{ lib
|
|
, buildPythonPackage
|
|
, editdistance-s
|
|
, fetchFromGitHub
|
|
, pytestCheckHook
|
|
, pythonOlder
|
|
, ukkonen
|
|
}:
|
|
|
|
buildPythonPackage rec {
|
|
pname = "identify";
|
|
version = "2.5.24";
|
|
format = "setuptools";
|
|
|
|
disabled = pythonOlder "3.7";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "pre-commit";
|
|
repo = pname;
|
|
rev = "v${version}";
|
|
hash = "sha256-L73M+lWonuT7sSk+piBkZZJtxxeBvZ1XUXUypvS65G0=";
|
|
};
|
|
|
|
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 ];
|
|
};
|
|
}
|