uboot: (firmwareOdroidC2/C4) don't invoke patch tool, use patches = [] instead
https://github.com/NixOS/nixpkgs/blob/master/pkgs/stdenv/generic/setup.sh#L948 this can do it nicely. Signed-off-by: Anton Arapov <anton@deadbeef.mx>
This commit is contained in:
commit
56de2bcd43
30691 changed files with 3076956 additions and 0 deletions
48
pkgs/development/python-modules/cufflinks/default.nix
Normal file
48
pkgs/development/python-modules/cufflinks/default.nix
Normal file
|
|
@ -0,0 +1,48 @@
|
|||
{ lib, buildPythonPackage, fetchPypi
|
||||
, chart-studio
|
||||
, colorlover
|
||||
, ipython
|
||||
, ipywidgets
|
||||
, pytest
|
||||
, nose
|
||||
, numpy
|
||||
, pandas
|
||||
, six
|
||||
, statsmodels
|
||||
}:
|
||||
|
||||
buildPythonPackage rec {
|
||||
pname = "cufflinks";
|
||||
version = "0.17.3";
|
||||
|
||||
src = fetchPypi {
|
||||
inherit pname version;
|
||||
sha256 = "0i56062k54dlg5iz3qyl1ykww62mpkp8jr4n450h0c60dm0b7ha8";
|
||||
};
|
||||
|
||||
propagatedBuildInputs = [
|
||||
chart-studio
|
||||
colorlover
|
||||
ipython
|
||||
ipywidgets
|
||||
numpy
|
||||
pandas
|
||||
six
|
||||
statsmodels
|
||||
];
|
||||
|
||||
checkInputs = [ pytest nose ];
|
||||
|
||||
# ignore tests which are incompatible with pandas>=1.0
|
||||
# https://github.com/santosjorge/cufflinks/issues/236
|
||||
checkPhase = ''
|
||||
pytest tests.py -k 'not bar_row'
|
||||
'';
|
||||
|
||||
meta = with lib; {
|
||||
description = "Productivity Tools for Plotly + Pandas";
|
||||
homepage = "https://github.com/santosjorge/cufflinks";
|
||||
license = licenses.mit;
|
||||
maintainers = with maintainers; [ globin ];
|
||||
};
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue