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;