mirror of
https://github.com/SebastianWendel/nixpkgs.git
synced 2024-11-06 18:26:45 +01:00
41 lines
743 B
Nix
41 lines
743 B
Nix
{ lib
|
|
, buildPythonPackage
|
|
, editdistance-s
|
|
, fetchFromGitHub
|
|
, pytestCheckHook
|
|
, pythonOlder
|
|
, ukkonen
|
|
}:
|
|
|
|
buildPythonPackage rec {
|
|
pname = "identify";
|
|
version = "2.4.4";
|
|
format = "setuptools";
|
|
|
|
disabled = pythonOlder "3.7";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "pre-commit";
|
|
repo = pname;
|
|
rev = "v${version}";
|
|
sha256 = "sha256-G819m1mMtk5v1paMf9vdK/m/gbq08NNHM1bfW7jb+JA=";
|
|
};
|
|
|
|
checkInputs = [
|
|
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 ];
|
|
};
|
|
}
|