diff options
Diffstat (limited to 'pkgs/development/python-modules/misoc/default.nix')
-rw-r--r-- | pkgs/development/python-modules/misoc/default.nix | 37 |
1 files changed, 18 insertions, 19 deletions
diff --git a/pkgs/development/python-modules/misoc/default.nix b/pkgs/development/python-modules/misoc/default.nix index 3fa9e3f6e472..e573760769be 100644 --- a/pkgs/development/python-modules/misoc/default.nix +++ b/pkgs/development/python-modules/misoc/default.nix @@ -1,23 +1,24 @@ -{ lib -, buildPythonPackage -, fetchFromGitHub -, pyserial -, asyncserial -, jinja2 -, migen -, numpy +{ + lib, + buildPythonPackage, + fetchFromGitHub, + pyserial, + asyncserial, + jinja2, + migen, + numpy, }: -buildPythonPackage rec { +buildPythonPackage { pname = "misoc"; - version = "unstable-2022-10-08"; + version = "0-unstable-2024-05-14"; format = "setuptools"; src = fetchFromGitHub { owner = "m-labs"; repo = "misoc"; - rev = "6a7c670ab6120b8136f652c41d907eb0fb16ed54"; - hash = "sha256-dLDp0xg5y5b443hD7vbJFobHxbhtnj68RdZnQ7ckgp4="; + rev = "fea9de558c730bc394a5936094ae95bb9d6fa726"; + hash = "sha256-zZ9LnUwvTvBL9iNFfmNTklQnd0I4PmV0BApMSblTnc0="; }; propagatedBuildInputs = [ @@ -27,16 +28,14 @@ buildPythonPackage rec { migen ]; - nativeCheckInputs = [ - numpy - ]; + nativeCheckInputs = [ numpy ]; pythonImportsCheck = [ "misoc" ]; - meta = with lib; { - description = "The original high performance and small footprint system-on-chip based on Migen"; + meta = { + description = "Original high performance and small footprint system-on-chip based on Migen"; homepage = "https://github.com/m-labs/misoc"; - license = licenses.bsd2; - maintainers = with maintainers; [ doronbehar ]; + license = lib.licenses.bsd2; + maintainers = with lib.maintainers; [ doronbehar ]; }; } |