Skip to content

Commit

Permalink
python3Packages.pandas-datareader: init at 0.9.0
Browse files Browse the repository at this point in the history
  • Loading branch information
evax authored and Jonathan Ringer committed Nov 4, 2020
1 parent 3a88116 commit ba588df
Show file tree
Hide file tree
Showing 2 changed files with 36 additions and 0 deletions.
34 changes: 34 additions & 0 deletions pkgs/development/python-modules/pandas-datareader/default.nix
Original file line number Diff line number Diff line change
@@ -0,0 +1,34 @@
{ stdenv
, buildPythonPackage
, fetchPypi
, pytestCheckHook
, isPy27
, pandas
, lxml
, requests
}:

buildPythonPackage rec {
pname = "pandas-datareader";
version = "0.9.0";
disabled = isPy27;

src = fetchPypi {
inherit pname version;
sha256 = "b2cbc1e16a6ab9ff1ed167ae2ea92839beab9a20823bd00bdfb78155fa04f891";
};

# Tests are trying to load data over the network
doCheck = false;
pythonImportsCheck = [ "pandas_datareader" ];

propagatedBuildInputs = [ pandas lxml requests ];

meta = with stdenv.lib; {
description = "Up to date remote data access for pandas, works for multiple versions of pandas";
homepage = "https://github.com/pydata/pandas-datareader";
license= licenses.bsd3;
maintainers = with maintainers; [ evax ];
platforms = platforms.unix;
};
}
2 changes: 2 additions & 0 deletions pkgs/top-level/python-packages.nix
Original file line number Diff line number Diff line change
Expand Up @@ -4306,6 +4306,8 @@ in {
else
callPackage ../development/python-modules/pandas/2.nix { };

pandas-datareader = callPackage ../development/python-modules/pandas-datareader { };

pandoc-attributes = callPackage ../development/python-modules/pandoc-attributes { };

pandocfilters = callPackage ../development/python-modules/pandocfilters { };
Expand Down

0 comments on commit ba588df

Please sign in to comment.