evcc: 0.131.4 -> 0.131.5
[NixPkgs.git] / pkgs / development / python-modules / pylpsd / default.nix
blobf583391a0d4320073d653db2f6bd65ff2c72ed98
2   lib,
3   fetchPypi,
4   buildPythonPackage,
5   numpy,
6   scipy,
7 }:
9 buildPythonPackage 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   };
18   # Tests fail and there are none
19   doCheck = false;
20   pythonImportsCheck = [ "pylpsd" ];
22   propagatedBuildInputs = [
23     numpy
24     scipy
25   ];
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   };