about summary refs log tree commit diff
path: root/pkgs
diff options
context:
space:
mode:
authorJack Leightcap <jack@leightcap.com>2023-08-04 22:55:58 -0400
committerJack Leightcap <jack@leightcap.com>2023-08-04 22:55:58 -0400
commit84935de73ed64fdd258f0791e993e8e71af1e25f (patch)
tree35269388b78d6803e7a0d25c79319b3d06128d54 /pkgs
parentdfcffbd74fd6f0419370d8240e445252a39f4d10 (diff)
downloadnixlib-84935de73ed64fdd258f0791e993e8e71af1e25f.tar
nixlib-84935de73ed64fdd258f0791e993e8e71af1e25f.tar.gz
nixlib-84935de73ed64fdd258f0791e993e8e71af1e25f.tar.bz2
nixlib-84935de73ed64fdd258f0791e993e8e71af1e25f.tar.lz
nixlib-84935de73ed64fdd258f0791e993e8e71af1e25f.tar.xz
nixlib-84935de73ed64fdd258f0791e993e8e71af1e25f.tar.zst
nixlib-84935de73ed64fdd258f0791e993e8e71af1e25f.zip
python3Packages.cocotb: 1.7.2 -> 1.8.0
Signed-off-by: Jack Leightcap <jack@leightcap.com>
Diffstat (limited to 'pkgs')
-rw-r--r--pkgs/development/python-modules/cocotb/default.nix22
1 files changed, 7 insertions, 15 deletions
diff --git a/pkgs/development/python-modules/cocotb/default.nix b/pkgs/development/python-modules/cocotb/default.nix
index cc2493bb4e63..10034b052d55 100644
--- a/pkgs/development/python-modules/cocotb/default.nix
+++ b/pkgs/development/python-modules/cocotb/default.nix
@@ -1,19 +1,9 @@
-{ lib
-, stdenv
-, buildPythonPackage
-, fetchFromGitHub
-, setuptools
-, setuptools-scm
-, cocotb-bus
-, find-libpython
-, pytestCheckHook
-, swig
-, verilog
-}:
+{ lib, stdenv, buildPythonPackage, fetchFromGitHub, setuptools, setuptools-scm
+, cocotb-bus, find-libpython, pytestCheckHook, swig, verilog }:
 
 buildPythonPackage rec {
   pname = "cocotb";
-  version = "1.7.2";
+  version = "1.8.0";
 
   # pypi source doesn't include tests
   src = fetchFromGitHub {
@@ -25,7 +15,8 @@ buildPythonPackage rec {
 
   nativeBuildInputs = [ setuptools-scm ];
 
-  buildInputs = [ setuptools find-libpython ];
+  buildInputs = [ setuptools ];
+  propagatedBuildInputs = [ find-libpython ];
 
   postPatch = ''
     patchShebangs bin/*.py
@@ -60,7 +51,8 @@ buildPythonPackage rec {
   pythonImportsCheck = [ "cocotb" ];
 
   meta = with lib; {
-    description = "Coroutine based cosimulation library for writing VHDL and Verilog testbenches in Python";
+    description =
+      "Coroutine based cosimulation library for writing VHDL and Verilog testbenches in Python";
     homepage = "https://github.com/cocotb/cocotb";
     license = licenses.bsd3;
     maintainers = with maintainers; [ matthuszagh ];