Clone of https://github.com/NixOS/nixpkgs.git (to stress-test knotserver)
at 21.05 33 lines 781 B view raw
1{ lib 2, buildPythonPackage 3, fetchPypi 4, isPy27 5, pandas 6, lxml 7, requests 8}: 9 10buildPythonPackage rec { 11 pname = "pandas-datareader"; 12 version = "0.9.0"; 13 disabled = isPy27; 14 15 src = fetchPypi { 16 inherit pname version; 17 sha256 = "b2cbc1e16a6ab9ff1ed167ae2ea92839beab9a20823bd00bdfb78155fa04f891"; 18 }; 19 20 # Tests are trying to load data over the network 21 doCheck = false; 22 pythonImportsCheck = [ "pandas_datareader" ]; 23 24 propagatedBuildInputs = [ pandas lxml requests ]; 25 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 }; 33}