python3Packages.whatthepatch: 1.0.2 -> 1.0.3

This commit is contained in:
Martin Weinelt 2022-12-30 20:13:56 +01:00
parent c335326b2f
commit af3649d1e4

View File

@ -2,19 +2,25 @@
, buildPythonPackage
, fetchFromGitHub
, pytestCheckHook
, setuptools
}:
buildPythonPackage rec {
pname = "whatthepatch";
version = "1.0.2";
version = "1.0.3";
format = "pyproject";
src = fetchFromGitHub {
owner = "cscorley";
repo = pname;
rev = version;
hash = "sha256-0l/Ebq7Js9sKFJ/RzkQ1aWEDCxt+COVd2qVnLSWwFx0=";
rev = "refs/tags/${version}";
hash = "sha256-P4SYSMdDjwXOmre3hXKS4gQ0OS9pz0SWqBeD/WQMQFw=";
};
nativeBuildInputs = [
setuptools
];
checkInputs = [
pytestCheckHook
];