check50: 3.3.11 -> 3.4.0 (#428807)

Co-authored-by: ethancedwards8 <ethan@ethancedwards.com>
This commit is contained in:
nixpkgs-merge-bot[bot]
2025-07-27 14:02:29 +00:00
committed by GitHub
co-authored by ethancedwards8
+3 -3
View File
@@ -7,14 +7,14 @@
python3Packages.buildPythonApplication rec {
pname = "check50";
version = "3.3.11";
version = "3.4.0";
pyproject = true;
src = fetchFromGitHub {
owner = "cs50";
repo = "check50";
tag = "v${version}";
hash = "sha256-+qyEMzAJG/fyIqj+0mk0HTxTlQk6sHZhvmfd9Hgj/aw=";
hash = "sha256-3WxFdXECIjbTxHK65BFnxOroEYzu7iOJwm15gIjitLA=";
};
build-system = [
@@ -45,7 +45,7 @@ python3Packages.buildPythonApplication rec {
description = "Testing tool for checking student CS50 code";
homepage = "https://cs50.readthedocs.io/projects/check50/en/latest/";
downloadPage = "https://github.com/cs50/check50";
changelog = "https://github.com/cs50/check50/releases/tag/v${version}";
changelog = "https://github.com/cs50/check50/releases/tag/${src.tag}";
license = lib.licenses.gpl3Only;
platforms = lib.platforms.unix;
maintainers = with lib.maintainers; [ ethancedwards8 ];