depot/third_party/nixpkgs/pkgs/development/python-modules/cpe/default.nix
Default email f34ce41345 Project import generated by Copybara.
GitOrigin-RevId: b73c2221a46c13557b1b3be9c2070cc42cf01eb3
2024-07-27 08:49:29 +02:00

43 lines
857 B
Nix

{
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 ];
};
}