at master 720 B view raw
1{ 2 lib, 3 fetchPypi, 4 buildPythonPackage, 5 numpy, 6 scipy, 7}: 8 9buildPythonPackage rec { 10 pname = "pylpsd"; 11 version = "0.1.4"; 12 format = "setuptools"; 13 src = fetchPypi { 14 inherit pname version; 15 hash = "sha256-evPL9vF75S8ATkFwzQjh4pLI/aXGXWwoypCb24nXAN8="; 16 }; 17 18 # Tests fail and there are none 19 doCheck = false; 20 pythonImportsCheck = [ "pylpsd" ]; 21 22 propagatedBuildInputs = [ 23 numpy 24 scipy 25 ]; 26 27 meta = with lib; { 28 description = "Python implementation of the LPSD algorithm for computing power spectral density with logarithmically spaced points"; 29 homepage = "https://github.com/bleykauf/py-lpsd"; 30 license = licenses.mit; 31 maintainers = with maintainers; [ doronbehar ]; 32 }; 33}