From 60a11682d186b38aa62814d130babf2e8ec8095c Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Robert=20Sch=C3=BCtz?= Date: Tue, 13 Aug 2024 10:03:37 -0700 Subject: [PATCH] python312Packages.cpe: 1.2.1 -> 1.3.0 Diff: https://github.com/nilp0inter/cpe/compare/refs/tags/v1.2.1...v1.3.0 Changelog: https://github.com/nilp0inter/cpe/releases/tag/v1.3.0 --- pkgs/development/python-modules/cpe/default.nix | 12 +++--------- 1 file changed, 3 insertions(+), 9 deletions(-) diff --git a/pkgs/development/python-modules/cpe/default.nix b/pkgs/development/python-modules/cpe/default.nix index 97f617bbd674..5aa48feea09d 100644 --- a/pkgs/development/python-modules/cpe/default.nix +++ b/pkgs/development/python-modules/cpe/default.nix @@ -9,7 +9,7 @@ buildPythonPackage rec { pname = "cpe"; - version = "1.2.1"; + version = "1.3.0"; pyproject = true; disabled = pythonOlder "3.10"; @@ -18,7 +18,7 @@ buildPythonPackage rec { owner = "nilp0inter"; repo = "cpe"; rev = "refs/tags/v${version}"; - hash = "sha256-1hTOMbsL1089/yPZbAIs5OgjtEzCBlFv2hGi+u4hV/k="; + hash = "sha256-nHFgsFNoDf1VJI7XOe62NOuL67AZCP/LFsymt7Q8L2U="; }; build-system = [ setuptools ]; @@ -27,14 +27,8 @@ buildPythonPackage rec { pythonImportsCheck = [ "cpe" ]; - disabledTests = [ - # Tests are outdated - "testfile_cpelang2" - "test_incompatible_versions" - "test_equals" - ]; - meta = { + changelog = "https://github.com/nilp0inter/cpe/releases/tag/v${version}"; description = "Common platform enumeration for python"; homepage = "https://github.com/nilp0inter/cpe"; license = lib.licenses.gpl3Only;