3
0
Fork 0
forked from mirrors/nixpkgs

Merge pull request #288087 from fabaff/identify-bump

python311Packages.identify: 2.5.33 -> 2.5.34
This commit is contained in:
Mario Rodas 2024-02-11 14:09:57 -05:00 committed by GitHub
commit 1d565c35c2
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -4,23 +4,28 @@
, fetchFromGitHub
, pytestCheckHook
, pythonOlder
, setuptools
, ukkonen
}:
buildPythonPackage rec {
pname = "identify";
version = "2.5.33";
format = "setuptools";
version = "2.5.34";
pyproject = true;
disabled = pythonOlder "3.8";
src = fetchFromGitHub {
owner = "pre-commit";
repo = pname;
repo = "identify";
rev = "refs/tags/v${version}";
hash = "sha256-v0k+N/E1xzhL2iWM0HQzYCxHfzuP8Za4eupkofN7bAA=";
hash = "sha256-q1RVFdDFUkKGaKpcbasXHks+OZhVRZUy3ufuruBZiPA=";
};
nativeBuildInputs = [
setuptools
];
nativeCheckInputs = [
editdistance-s
pytestCheckHook