Skip to content
Permalink

Comparing changes

Choose two branches to see what’s changed or to start a new pull request. If you need to, you can also or learn more about diff comparisons.

Open a pull request

Create a new pull request by comparing changes across two branches. If you need to, you can also . Learn more about diff comparisons here.
base repository: NixOS/nixpkgs
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: 7a2454bd4e03
Choose a base ref
...
head repository: NixOS/nixpkgs
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: 33d1236900e0
Choose a head ref
  • 9 commits
  • 8 files changed
  • 1 contributor

Commits on Jan 1, 2018

  1. Copy the full SHA
    88143d2 View commit details
  2. Copy the full SHA
    f711fbd View commit details
  3. Copy the full SHA
    4a3c742 View commit details
  4. Copy the full SHA
    8ca8c46 View commit details
  5. Copy the full SHA
    77b098e View commit details
  6. Copy the full SHA
    8cbb718 View commit details
  7. Copy the full SHA
    8b5c5fb View commit details
  8. Copy the full SHA
    24d3457 View commit details
  9. Copy the full SHA
    33d1236 View commit details
12 changes: 3 additions & 9 deletions pkgs/development/python-modules/blaze/default.nix
Original file line number Diff line number Diff line change
@@ -25,12 +25,11 @@

buildPythonPackage rec {
pname = "blaze";
version = "0.11.0";
name = "${pname}-${version}";
version = "0.11.3";

src = fetchurl {
url = "https://github.com/blaze/blaze/archive/${version}.tar.gz";
sha256 = "07zrrxkmdqk84xvdmp29859zcfzlpx5pz6g62l28nqp6n6a7yq9a";
sha256 = "075gqc9d7g284z4nfwv5zbq99ln22w25l4lcndjg3v10kmsjadww";
};

checkInputs = [ pytest ];
@@ -56,13 +55,8 @@ buildPythonPackage rec {
toolz
];

# Failing test
# ERROR collecting blaze/tests/test_interactive.py
# E networkx.exception.NetworkXNoPath: node <class 'list'> not
# reachable from <class 'dask.array.core.Array'>
doCheck = false;

checkPhase = ''
rm pytest.ini # Not interested in coverage
py.test blaze/tests
'';

4 changes: 2 additions & 2 deletions pkgs/development/python-modules/decorator/default.nix
Original file line number Diff line number Diff line change
@@ -5,11 +5,11 @@

buildPythonPackage rec {
pname = "decorator";
version = "4.0.11";
version = "4.1.2";

src = fetchPypi {
inherit pname version;
sha256 = "953d6bf082b100f43229cf547f4f97f97e970f5ad645ee7601d55ff87afdfe76";
sha256 = "7cb64d38cb8002971710c8899fbdfb859a23a364b7c99dab19d1f719c2ba16b5";
};

meta = {
24 changes: 24 additions & 0 deletions pkgs/development/python-modules/jellyfish/default.nix
Original file line number Diff line number Diff line change
@@ -0,0 +1,24 @@
{ lib
, buildPythonPackage
, fetchPypi
, pytest
, unicodecsv
}:

buildPythonPackage rec {
pname = "jellyfish";
version = "0.5.6";

src = fetchPypi {
inherit pname version;
sha256 = "887a9a49d0caee913a883c3e7eb185f6260ebe2137562365be422d1316bd39c9";
};

checkInputs = [ pytest unicodecsv ];

meta = {
homepage = https://github.com/sunlightlabs/jellyfish;
description = "Approximate and phonetic matching of strings";
maintainers = with lib.maintainers; [ koral ];
};
}
34 changes: 34 additions & 0 deletions pkgs/development/python-modules/networkx/default.nix
Original file line number Diff line number Diff line change
@@ -0,0 +1,34 @@
{ lib
, buildPythonPackage
, fetchPypi
, nose
, decorator
, isPy36
, isPyPy
}:

buildPythonPackage rec {
pname = "networkx";
version = "1.11";

# Currently broken on PyPy.
# https://github.com/networkx/networkx/pull/1361
disabled = isPyPy;

src = fetchPypi {
inherit pname version;
sha256 = "1f74s56xb4ggixiq0vxyfxsfk8p20c7a099lpcf60izv1php03hd";
};

checkInputs = [ nose ];
propagatedBuildInputs = [ decorator ];

# 17 failures with 3.6 https://github.com/networkx/networkx/issues/2396#issuecomment-304437299
doCheck = !(isPy36);

meta = {
homepage = "https://networkx.github.io/";
description = "Library for the creation, manipulation, and study of the structure, dynamics, and functions of complex networks";
license = lib.licenses.bsd3;
};
}
4 changes: 2 additions & 2 deletions pkgs/development/python-modules/pandas/default.nix
Original file line number Diff line number Diff line change
@@ -28,12 +28,12 @@ let
inherit (stdenv) isDarwin;
in buildPythonPackage rec {
pname = "pandas";
version = "0.21.1";
version = "0.22.0";
name = "${pname}-${version}";

src = fetchPypi {
inherit pname version;
sha256 = "c5f5cba88bf0659554c41c909e1f78139f6fce8fa9315a29a23692b38ff9788a";
sha256 = "44a94091dd71f05922eec661638ec1a35f26d573c119aa2fad964f10a2880e6c";
};

LC_ALL = "en_US.UTF-8";
35 changes: 35 additions & 0 deletions pkgs/development/python-modules/partd/default.nix
Original file line number Diff line number Diff line change
@@ -0,0 +1,35 @@
{ lib
, buildPythonPackage
, fetchPypi
, pytest
, locket
, numpy
, pandas
, pyzmq
, toolz
}:

buildPythonPackage rec {
pname = "partd";
version = "0.3.8";

src = fetchPypi {
inherit pname version;
sha256 = "67291f1c4827cde3e0148b3be5d69af64b6d6169feb9ba88f0a6cfe77089400f";
};

checkInputs = [ pytest ];

propagatedBuildInputs = [ locket numpy pandas pyzmq toolz ];

checkPhase = ''
rm partd/tests/test_zmq.py # requires network & fails
py.test
'';

meta = {
description = "Appendable key-value storage";
license = with lib.licenses; [ bsd3 ];
homepage = https://github.com/dask/partd/;
};
}
4 changes: 2 additions & 2 deletions pkgs/development/python-modules/werkzeug/default.nix
Original file line number Diff line number Diff line change
@@ -5,11 +5,11 @@
buildPythonPackage rec {
name = "${pname}-${version}";
pname = "Werkzeug";
version = "0.13";
version = "0.14.1";

src = fetchPypi {
inherit pname version;
sha256 = "6246e5fc98a505824113fb6aca993d45ea284a2bcffdc2c65d0c538e53e4abd3";
sha256 = "c3fd7a7d41976d9f44db327260e263132466836cef6f91512889ed60ad26557c";
};

propagatedBuildInputs = [ itsdangerous ];
69 changes: 3 additions & 66 deletions pkgs/top-level/python-packages.nix
Original file line number Diff line number Diff line change
@@ -9499,23 +9499,7 @@ in {

jedi = callPackage ../development/python-modules/jedi { };

jellyfish = buildPythonPackage rec {
version = "0.5.2";
name = "jellyfish-${version}";

src = pkgs.fetchurl {
url = "mirror://pypi/j/jellyfish/${name}.tar.gz";
sha256 = "15xk0kbr1gig9r1mp22lk9mk3jyi886h8ywn9diixhnyl4q6dacn";
};

buildInputs = with self; [ pytest unicodecsv ];

meta = {
homepage = https://github.com/sunlightlabs/jellyfish;
description = "Approximate and phonetic matching of strings";
maintainers = with maintainers; [ koral ];
};
};
jellyfish = callPackage ../development/python-modules/jellyfish { };

j2cli = buildPythonPackage rec {
name = "j2cli-${version}";
@@ -12672,30 +12656,7 @@ in {

parso = callPackage ../development/python-modules/parso { };

partd = buildPythonPackage rec {
name = "partd-${version}";
version = "0.3.7";

src = pkgs.fetchurl {
url = "mirror://pypi/p/partd/${name}.tar.gz";
sha256 = "066d254d2dh9xcanffgkjgwxpz5v0059b063bij10fvzl2y49hzx";
};

buildInputs = with self; [ pytest ];

propagatedBuildInputs = with self; [ locket numpy pandas pyzmq toolz ];

checkPhase = ''
rm partd/tests/test_zmq.py # requires network & fails
py.test
'';

meta = {
description = "Appendable key-value storage";
license = with licenses; [ bsd3 ];
homepage = https://github.com/dask/partd/;
};
};
partd = callPackage ../development/python-modules/partd { };

patch = buildPythonPackage rec {
name = "${pname}-${version}";
@@ -20957,31 +20918,7 @@ EOF
};
};

networkx = buildPythonPackage rec {
version = "1.11";
name = "networkx-${version}";

# Currently broken on PyPy.
# https://github.com/networkx/networkx/pull/1361
disabled = isPyPy;

src = pkgs.fetchurl {
url = "mirror://pypi/n/networkx/${name}.tar.gz";
sha256 = "1f74s56xb4ggixiq0vxyfxsfk8p20c7a099lpcf60izv1php03hd";
};

buildInputs = with self; [ nose ];
propagatedBuildInputs = with self; [ decorator ];

# 17 failures with 3.6 https://github.com/networkx/networkx/issues/2396#issuecomment-304437299
doCheck = !(isPy36);

meta = {
homepage = "https://networkx.github.io/";
description = "Library for the creation, manipulation, and study of the structure, dynamics, and functions of complex networks";
license = licenses.bsd3;
};
};
networkx = callPackage ../development/python-modules/networkx { };

ofxclient = callPackage ../development/python-modules/ofxclient {};