818c48e259
GitOrigin-RevId: 14aef06d9b3ad1d07626bdbb16083b83f92dc6c1
33 lines
644 B
Nix
33 lines
644 B
Nix
{ lib
|
|
, buildPythonPackage
|
|
, fetchFromGitHub
|
|
, pytestCheckHook
|
|
, editdistance-s
|
|
}:
|
|
|
|
buildPythonPackage rec {
|
|
pname = "identify";
|
|
version = "2.3.0";
|
|
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "pre-commit";
|
|
repo = pname;
|
|
rev = "v${version}";
|
|
sha256 = "sha256-V+pRxdbWPaIVqIJYcrmeZKPmmC1ouRgdFsaVVrDUsQc=";
|
|
};
|
|
|
|
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 ];
|
|
};
|
|
}
|