depot/third_party/nixpkgs/pkgs/development/python-modules/riscof/default.nix
Default email 83405b6dd2 Project import generated by Copybara.
GitOrigin-RevId: ac718d02867a84b42522a0ece52d841188208f2c
2023-03-15 17:39:30 +01:00

36 lines
930 B
Nix

{ buildPythonPackage
, fetchFromGitHub
, lib
, git
, riscv-isac
, riscv-config
, jinja2
}:
buildPythonPackage rec {
pname = "riscof";
version = "1.25.3";
src = fetchFromGitHub {
owner = "riscv-software-src";
repo = pname;
rev = "refs/tags/${version}";
hash = "sha256-ToI2xI0fvnDR+hJ++T4ss5X3gc4G6Cj1uJHx0m2X7GY=";
};
postPatch = "substituteInPlace riscof/requirements.txt --replace 'GitPython==3.1.17' GitPython";
propagatedBuildInputs = [ riscv-isac riscv-config jinja2 ];
patches = [
# riscof copies a template directory from the store, but breaks because it doesn't change permissions and expects it to be writeable
./make_writeable.patch
];
meta = with lib; {
homepage = "https://github.com/riscv-software-src/riscof";
description = "RISC-V Architectural Test Framework";
maintainers = with maintainers; [ genericnerdyusername ];
license = licenses.bsd3;
};
}