Merge pull request #119126 from fabaff/pycomfoconnect
[NixPkgs.git] / pkgs / development / python-modules / pandas-datareader / default.nix
blobd4aa1551bedc195a574d56fe4a013681a8a2df2e
1 { lib
2 , buildPythonPackage
3 , fetchPypi
4 , isPy27
5 , pandas
6 , lxml
7 , requests
8 }:
10 buildPythonPackage rec {
11   pname = "pandas-datareader";
12   version = "0.9.0";
13   disabled = isPy27;
15   src = fetchPypi {
16     inherit pname version;
17     sha256 = "b2cbc1e16a6ab9ff1ed167ae2ea92839beab9a20823bd00bdfb78155fa04f891";
18   };
20   # Tests are trying to load data over the network
21   doCheck = false;
22   pythonImportsCheck = [ "pandas_datareader" ];
24   propagatedBuildInputs = [ pandas lxml requests ];
26   meta = with lib; {
27     description = "Up to date remote data access for pandas, works for multiple versions of pandas";
28     homepage = "https://github.com/pydata/pandas-datareader";
29     license= licenses.bsd3;
30     maintainers = with maintainers; [ evax ];
31     platforms = platforms.unix;
32   };