Merge pull request #324744 from Tochiaha/pycpe

python312Packages.cpe: init at 1.2.1
This commit is contained in:
Fabian Affolter 2024-07-07 15:19:49 +02:00 committed by GitHub
commit 75d3eee9c7
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
2 changed files with 45 additions and 0 deletions

View File

@ -0,0 +1,43 @@
{
lib,
buildPythonPackage,
fetchFromGitHub,
pytestCheckHook,
pythonOlder,
setuptools,
}:
buildPythonPackage rec {
pname = "cpe";
version = "1.2.1";
pyproject = true;
disabled = pythonOlder "3.10";
src = fetchFromGitHub {
owner = "nilp0inter";
repo = "cpe";
rev = "refs/tags/v${version}";
hash = "sha256-1hTOMbsL1089/yPZbAIs5OgjtEzCBlFv2hGi+u4hV/k=";
};
build-system = [ setuptools ];
nativeCheckInputs = [ pytestCheckHook ];
pythonImportsCheck = [ "cpe" ];
disabledTests = [
# Tests are outdated
"testfile_cpelang2"
"test_incompatible_versions"
"test_equals"
];
meta = {
description = "Common platform enumeration for python";
homepage = "https://github.com/nilp0inter/cpe";
license = lib.licenses.gpl3Only;
maintainers = with lib.maintainers; [ tochiaha ];
};
}

View File

@ -2539,6 +2539,8 @@ self: super: with self; {
coveralls = callPackage ../development/python-modules/coveralls { };
cpe = callPackage ../development/python-modules/cpe { };
cppe = callPackage ../development/python-modules/cppe {
inherit (pkgs) cppe;
};