about summary refs log tree commit diff
path: root/pkgs/development/python-modules/archspec/default.nix
blob: ea48798b6898bff68cd88a0654ccbeade16a3fc3 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
{ lib
, buildPythonPackage
, fetchFromGitHub
, poetry-core
, click
, six
, pytestCheckHook
, jsonschema
}:

buildPythonPackage rec {
  pname = "archspec";
  version = "0.1.4";
  format = "pyproject";

  src = fetchFromGitHub {
    owner = pname;
    repo = pname;
    rev = "v${version}";
    fetchSubmodules = true;
    sha256 = "sha256-ScigEpYNArveqi5tlqiA7LwsVs2RkjT+GChxhSy/ndw=";
  };

  nativeBuildInputs = [ poetry-core ];
  propagatedBuildInputs = [ click six ];
  checkInputs = [ pytestCheckHook jsonschema ];

  pythonImportsCheck = [ "archspec" ];

  meta = with lib; {
    description = "A library for detecting, labeling, and reasoning about microarchitectures";
    homepage = "https://archspec.readthedocs.io/en/latest/";
    license = with licenses; [ mit asl20 ];
    maintainers = with maintainers; [ atila ];
  };
}