blob: e573760769be3525ccb01088324603f0b5db9f7a (
about) (
plain)
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
37
38
39
40
41
|
{
lib,
buildPythonPackage,
fetchFromGitHub,
pyserial,
asyncserial,
jinja2,
migen,
numpy,
}:
buildPythonPackage {
pname = "misoc";
version = "0-unstable-2024-05-14";
format = "setuptools";
src = fetchFromGitHub {
owner = "m-labs";
repo = "misoc";
rev = "fea9de558c730bc394a5936094ae95bb9d6fa726";
hash = "sha256-zZ9LnUwvTvBL9iNFfmNTklQnd0I4PmV0BApMSblTnc0=";
};
propagatedBuildInputs = [
pyserial
asyncserial
jinja2
migen
];
nativeCheckInputs = [ numpy ];
pythonImportsCheck = [ "misoc" ];
meta = {
description = "Original high performance and small footprint system-on-chip based on Migen";
homepage = "https://github.com/m-labs/misoc";
license = lib.licenses.bsd2;
maintainers = with lib.maintainers; [ doronbehar ];
};
}
|