Merge pull request #88688 from matthuszagh/pyspice

python3Packages.pyspice: init at 1.4.3
This commit is contained in:
Mario Rodas 2020-09-20 17:14:31 -05:00 committed by GitHub
commit 6aad47ca82
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
2 changed files with 53 additions and 0 deletions

View file

@ -0,0 +1,51 @@
{ stdenv
, buildPythonPackage
, fetchPypi
, libngspice
, numpy
, ply
, scipy
, pyyaml
, cffi
, requests
, matplotlib
, setuptools
}:
buildPythonPackage rec {
pname = "PySpice";
version = "1.4.3";
src = fetchPypi {
inherit pname version;
sha256 = "0mnyy8nr06d1al99kniyqcm0p9a8dvkg719s42sajl8yf51sayc9";
};
propagatedBuildInputs = [
setuptools
requests
pyyaml
cffi
matplotlib
numpy
ply
scipy
libngspice
];
doCheck = false;
pythonImportsCheck = [ "PySpice" ];
postPatch = ''
substituteInPlace PySpice/Spice/NgSpice/Shared.py --replace \
"ffi.dlopen(self.library_path)" \
"ffi.dlopen('${libngspice}/lib/libngspice${stdenv.hostPlatform.extensions.sharedLibrary}')"
'';
meta = with stdenv.lib; {
description = "Simulate electronic circuit using Python and the Ngspice / Xyce simulators";
homepage = "https://github.com/FabriceSalvaire/PySpice";
license = licenses.gpl3Only;
maintainers = with maintainers; [ matthuszagh ];
};
}

View file

@ -5383,6 +5383,8 @@ in {
pyspf = callPackage ../development/python-modules/pyspf { };
pyspice = callPackage ../development/python-modules/pyspice { };
pyspinel = callPackage ../development/python-modules/pyspinel { };
pyspotify = callPackage ../development/python-modules/pyspotify { };