summary refs log tree commit diff
path: root/pkgs/development/python-modules/pvlib/default.nix
blob: 91af07b49be3ff5543a36bffc8f6923f237c392c (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
{ stdenv, buildPythonPackage, fetchFromGitHub, numpy, pandas, pytz, six
, pytest, mock, pytest-mock }:

buildPythonPackage rec {
  pname = "pvlib";
  version = "0.6.1";

  # Use GitHub because PyPI release tarball doesn't contain the tests. See:
  # https://github.com/pvlib/pvlib-python/issues/473
  src = fetchFromGitHub{
    owner = "pvlib";
    repo = "pvlib-python";
    rev = "v${version}";
    sha256 = "17h7vz9s829qxnl4byr8458gzgiismrbrn5gl0klhfhwvc5kkdfh";
  };

  checkInputs = [ pytest mock pytest-mock ];
  propagatedBuildInputs = [ numpy pandas pytz six ];

  # Skip a few tests that try to access some URLs
  checkPhase = ''
    runHook preCheck
    pushd pvlib/test
    pytest . -k "not test_read_srml_dt_index and not test_read_srml_month_from_solardata"
    popd
    runHook postCheck
  '';

  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 ];
  };
}