1
0
Fork 1
mirror of https://github.com/NixOS/nixpkgs.git synced 2024-11-17 19:21:04 +00:00

python312Packages.identify: 2.6.1 -> 2.6.2 (#355873)

This commit is contained in:
Fabian Affolter 2024-11-17 09:27:33 +01:00 committed by GitHub
commit d211936a66
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -11,16 +11,16 @@
buildPythonPackage rec {
pname = "identify";
version = "2.6.1";
version = "2.6.2";
pyproject = true;
disabled = pythonOlder "3.8";
disabled = pythonOlder "3.9";
src = fetchFromGitHub {
owner = "pre-commit";
repo = "identify";
rev = "refs/tags/v${version}";
hash = "sha256-EbJiMTDE9eumhkWTXlcB38rHrX5DPAZdqix2H4ocnkE=";
hash = "sha256-6sKnHsVLkwHy2udd8znqiFFMfWnmWTxTU949X4bqLNU=";
};
build-system = [ setuptools ];