python312Packages.whatthepatch: 1.0.6 -> 1.0.7 (#356632)

This commit is contained in:
OTABI Tomoya 2024-11-19 18:32:20 +09:00 committed by GitHub
commit 837d7d1f7d
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -9,29 +9,29 @@
buildPythonPackage rec {
pname = "whatthepatch";
version = "1.0.6";
format = "pyproject";
version = "1.0.7";
pyproject = true;
disabled = pythonOlder "3.7";
disabled = pythonOlder "3.9";
src = fetchFromGitHub {
owner = "cscorley";
repo = pname;
rev = "refs/tags/${version}";
hash = "sha256-NjlQL+zgN9WKUMxMCl97eXTdM8Prrg3iiY8/zwQ8jyY=";
hash = "sha256-0pkkwVo9yaFEZyitfpKMC8EVr8HgPLUkrGWmyYOdZNE=";
};
nativeBuildInputs = [ setuptools ];
build-system = [ setuptools ];
nativeCheckInputs = [ pytestCheckHook ];
pythonImportsCheck = [ "whatthepatch" ];
meta = with lib; {
meta = {
description = "Python library for both parsing and applying patch files";
homepage = "https://github.com/cscorley/whatthepatch";
changelog = "https://github.com/cscorley/whatthepatch/blob/${version}/HISTORY.md";
license = licenses.mit;
maintainers = [ ];
license = lib.licenses.mit;
maintainers = with lib.maintainers; [ nickcao ];
};
}