blob: e6e8f306bf0d50d82fc1cb950d2b1b20e3686445 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
|
{
lib,
buildPythonPackage,
editdistance-s,
fetchFromGitHub,
pytestCheckHook,
pythonOlder,
setuptools,
ukkonen,
}:
buildPythonPackage rec {
pname = "identify";
version = "2.5.36";
pyproject = true;
disabled = pythonOlder "3.8";
src = fetchFromGitHub {
owner = "pre-commit";
repo = "identify";
rev = "refs/tags/v${version}";
hash = "sha256-CO+qP0FIUdPFXy6/7FgrKZbUp48XbgqqGV2GAX9ogMY=";
};
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";
};
}
|