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