python310Packages.riscv-isac: add changelog to meta

- switch to pytestCheckHook
- add pythonImportsCheck
This commit is contained in:
Fabian Affolter 2023-05-11 09:41:22 +02:00
parent bb034f61a2
commit 9b979714b6

View File

@ -1,19 +1,24 @@
{ buildPythonPackage
{ lib
, buildPythonPackage
, fetchFromGitHub
, lib
, click
, colorlog
, gitpython
, pluggy
, pyelftools
, pytablewriter
, pytest
, pytestCheckHook
, pyyaml
, ruamel-yaml
, pythonOlder
}:
buildPythonPackage rec {
pname = "riscv-isac";
version = "0.17.0";
format = "setuptools";
disabled = pythonOlder "3.7";
src = fetchFromGitHub {
owner = "riscv-software-src";
@ -22,23 +27,36 @@ buildPythonPackage rec {
hash = "sha256-I0RsvSCrSlNGVj8z+WUQx6vbdNkKCRyMFvNx+0mTBAE=";
};
postPatch = "substituteInPlace riscv_isac/requirements.txt --replace 'pyelftools==0.26' pyelftools";
postPatch = ''
substituteInPlace riscv_isac/requirements.txt \
--replace "pyelftools==0.26" "pyelftools" \
--replace "pytest" ""
'';
propagatedBuildInputs = [
click
colorlog
gitpython
pluggy
pyelftools
pytablewriter
pytest
pyyaml
ruamel-yaml
];
nativeCheckInputs = [
pytestCheckHook
];
pythonImportsCheck = [
"riscv_isac"
];
meta = with lib; {
homepage = "https://github.com/riscv/riscv-isac";
description = "An ISA coverage extraction tool";
maintainers = with maintainers; [ genericnerdyusername ];
homepage = "https://github.com/riscv/riscv-isac";
changelog = "https://github.com/riscv-software-src/riscv-isac/blob/${version}/CHANGELOG.md";
license = licenses.bsd3;
maintainers = with maintainers; [ genericnerdyusername ];
};
}