nixpkgs/pkgs/development/python-modules/pvlib/default.nix

26 lines
781 B
Nix
Raw Normal View History

2018-06-06 11:22:37 +01:00
{ stdenv, buildPythonPackage, fetchPypi, numpy, pandas, pytz, six, pytest }:
buildPythonPackage rec {
pname = "pvlib";
2019-02-14 07:37:25 +00:00
version = "0.6.1";
2018-06-06 11:22:37 +01:00
src = fetchPypi {
inherit pname version;
2019-02-14 07:37:25 +00:00
sha256 = "56e70747add2e50846dd8bbef9a4735e82c1224ce630d1db7590b96bd59dd3f7";
2018-06-06 11:22:37 +01:00
};
checkInputs = [ pytest ];
propagatedBuildInputs = [ numpy pandas pytz six ];
# Currently, the PyPI tarball doesn't contain the tests. When that has been
# fixed, enable testing. See: https://github.com/pvlib/pvlib-python/issues/473
doCheck = false;
meta = with stdenv.lib; {
homepage = http://pvlib-python.readthedocs.io;
description = "Simulate the performance of photovoltaic energy systems";
license = licenses.bsd3;
maintainers = with maintainers; [ jluttine ];
};
}