Files
nixpkgs/pkgs/development/python-modules/archspec/default.nix
T
Ihar Hrachyshka 567e8dfd8e treewide: clean up 'meta = with' pattern
This commit was created by a combination of scripts and tools:
- an ast-grep script to prefix things in meta with `lib.`,
- a modified nixf-diagnose / nixf combination to remove unused `with
lib;`, and
- regular nixfmt.

Co-authored-by: Wolfgang Walther <walther@technowledgy.de>
2025-12-10 18:09:49 +01:00

50 lines
1001 B
Nix

{
lib,
buildPythonPackage,
click,
fetchFromGitHub,
jsonschema,
poetry-core,
pytestCheckHook,
pythonOlder,
}:
buildPythonPackage rec {
pname = "archspec";
version = "0.2.5";
pyproject = true;
disabled = pythonOlder "3.7";
src = fetchFromGitHub {
owner = "archspec";
repo = "archspec";
tag = "v${version}";
fetchSubmodules = true;
hash = "sha256-BfjFNwfNyT/da0Z5/bBdbv+RT8lqM0s2q64cz79vuF0=";
};
build-system = [ poetry-core ];
dependecies = [ click ];
nativeCheckInputs = [
pytestCheckHook
jsonschema
];
pythonImportsCheck = [ "archspec" ];
meta = {
description = "Library for detecting, labeling, and reasoning about microarchitectures";
homepage = "https://archspec.readthedocs.io/";
changelog = "https://github.com/archspec/archspec/releases/tag/${src.tag}";
license = with lib.licenses; [
mit
asl20
];
maintainers = with lib.maintainers; [ atila ];
mainProgram = "archspec";
};
}