d9e13ed064
GitOrigin-RevId: a930f7da84786807bb105df40e76b541604c3e72
33 lines
645 B
Nix
33 lines
645 B
Nix
{ lib
|
|
, buildPythonPackage
|
|
, fetchFromGitHub
|
|
, pytestCheckHook
|
|
, editdistance-s
|
|
}:
|
|
|
|
buildPythonPackage rec {
|
|
pname = "identify";
|
|
version = "2.2.15";
|
|
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "pre-commit";
|
|
repo = pname;
|
|
rev = "v${version}";
|
|
sha256 = "sha256-mr778CszspTuKSPwXBDaehCMqbfkNFgAVzpkn7seVoU=";
|
|
};
|
|
|
|
checkInputs = [
|
|
editdistance-s
|
|
pytestCheckHook
|
|
];
|
|
|
|
pythonImportsCheck = [ "identify" ];
|
|
|
|
meta = with lib; {
|
|
description = "File identification library for Python";
|
|
homepage = "https://github.com/chriskuehl/identify";
|
|
license = licenses.mit;
|
|
maintainers = with maintainers; [ fab ];
|
|
};
|
|
}
|