python312Packages.scikit-rf: 1.1.0 -> 1.2.0

This commit is contained in:
R. Ryantm
2024-08-02 00:52:35 +00:00
committed by Florian Brandes
parent bca43208ce
commit ae2afef6cd

View File

@@ -33,16 +33,16 @@
buildPythonPackage rec {
pname = "scikit-rf";
version = "1.1.0";
version = "1.2.0";
pyproject = true;
disabled = pythonOlder "3.7";
disabled = pythonOlder "3.8";
src = fetchFromGitHub {
owner = "scikit-rf";
repo = pname;
rev = "refs/tags/v${version}";
hash = "sha256-xLgttefCRj8U2Wqif/28FiSjPjQn9YYCB+stlhZiIUo=";
hash = "sha256-K+iOpgEKwYtv8be/dLeDHYUDI8xZsoqB7mYDkVeCA10=";
};
buildInputs = [ setuptools ];