mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-23 07:23:20 +00:00
3321e63b12
Conflicts: - pkgs/development/python-modules/sphinx-autobuild/default.nix
52 lines
1021 B
Nix
52 lines
1021 B
Nix
{ lib
|
|
, buildPythonPackage
|
|
, click
|
|
, fetchFromGitHub
|
|
, jsonschema
|
|
, poetry-core
|
|
, pytestCheckHook
|
|
, pythonOlder
|
|
}:
|
|
|
|
buildPythonPackage rec {
|
|
pname = "archspec";
|
|
version = "0.2.3";
|
|
pyproject = true;
|
|
|
|
disabled = pythonOlder "3.7";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "archspec";
|
|
repo = "archspec";
|
|
rev = "refs/tags/v${version}";
|
|
fetchSubmodules = true;
|
|
hash = "sha256-Ek+rmgvG6DbtxljAEHVac/JzNI1MaLpPu4G8nhaxzg8=";
|
|
};
|
|
|
|
nativeBuildInputs = [
|
|
poetry-core
|
|
];
|
|
|
|
propagatedBuildInputs = [
|
|
click
|
|
];
|
|
|
|
nativeCheckInputs = [
|
|
pytestCheckHook
|
|
jsonschema
|
|
];
|
|
|
|
pythonImportsCheck = [
|
|
"archspec"
|
|
];
|
|
|
|
meta = with lib; {
|
|
description = "Library for detecting, labeling, and reasoning about microarchitectures";
|
|
mainProgram = "archspec";
|
|
homepage = "https://archspec.readthedocs.io/";
|
|
changelog = "https://github.com/archspec/archspec/releases/tag/v${version}";
|
|
license = with licenses; [ mit asl20 ];
|
|
maintainers = with maintainers; [ atila ];
|
|
};
|
|
}
|