0
0
Fork 0
mirror of https://github.com/NixOS/nixpkgs.git synced 2025-07-12 05:16:25 +03:00

python3Packages.tinytag: 1.10.4 -> 2.0.0 (#367456)

This commit is contained in:
Ryan Hendrickson 2025-01-03 18:17:11 -05:00 committed by GitHub
commit c0cb67536b
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -3,22 +3,26 @@
buildPythonPackage, buildPythonPackage,
fetchFromGitHub, fetchFromGitHub,
setuptools, setuptools,
flit-core,
pytestCheckHook, pytestCheckHook,
}: }:
buildPythonPackage rec { buildPythonPackage rec {
pname = "tinytag"; pname = "tinytag";
version = "1.10.1"; version = "2.0.0";
pyproject = true; pyproject = true;
src = fetchFromGitHub { src = fetchFromGitHub {
owner = "tinytag"; owner = "tinytag";
repo = "tinytag"; repo = "tinytag";
rev = "refs/tags/${version}"; rev = "refs/tags/${version}";
hash = "sha256-Kg67EwDIi/Io7KKnNiqPzQKginrfuE6FAeOCjFgEJkY="; hash = "sha256-HSDEsyM9jGmS0o/EQj0GS/Ur4aepFgv8VpVNoJTyZGA=";
}; };
build-system = [ setuptools ]; build-system = [
setuptools
flit-core
];
pythonImportsCheck = [ "tinytag" ]; pythonImportsCheck = [ "tinytag" ];