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: dc15c834dcf6
Choose a base ref
...
head repository: NixOS/nixpkgs
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: 0895fcf266ac
Choose a head ref
  • 4 commits
  • 4 files changed
  • 3 contributors

Commits on Feb 20, 2021

  1. Copy the full SHA
    bbf9590 View commit details
  2. python3Packages.sqlalchemy: parallelize tests with xdist

    Cuts down the test phase from 11 to 4 minutes on my remote builder.
    mweinelt authored and FRidh committed Feb 20, 2021

    Unverified

    This commit is not signed, but one or more authors requires that any commit attributed to them is signed.
    Copy the full SHA
    b986072 View commit details
  3. python3Packages.packaging: 20.7 -> 20.8

    Jonathan Ringer authored and FRidh committed Feb 20, 2021
    Copy the full SHA
    17ff81d View commit details
  4. python3Packages.wheel: 0.35.1 -> 0.36.2

    Jonathan Ringer authored and FRidh committed Feb 20, 2021
    Copy the full SHA
    0895fcf View commit details
4 changes: 2 additions & 2 deletions pkgs/development/python-modules/packaging/default.nix
Original file line number Diff line number Diff line change
@@ -10,12 +10,12 @@

buildPythonPackage rec {
pname = "packaging";
version = "20.7";
version = "20.8";
format = "pyproject";

src = fetchPypi {
inherit pname version;
sha256 = "Ba87uF0yA3fbKBzyVKsFDhp+vL9UEGhamkB+GKH4EjY=";
sha256 = "sha256-eFmBhacAikcNZFJqgFnemqpEkjjygPyetrE7psQQkJM=";
};

nativeBuildInputs = [
4 changes: 2 additions & 2 deletions pkgs/development/python-modules/pandas/default.nix
Original file line number Diff line number Diff line change
@@ -28,11 +28,11 @@

buildPythonPackage rec {
pname = "pandas";
version = "1.1.5";
version = "1.2.2";

src = fetchPypi {
inherit pname version;
sha256 = "06vhk75hmzgv1sfbjzgnsw9x10h7y6bd6s6z7d6lfnn7wcgc83zi";
sha256 = "14ed84b463e9b84c8ff9308a79b04bf591ae3122a376ee0f62c68a1bd917a773";
};

nativeBuildInputs = [ cython ];
4 changes: 4 additions & 0 deletions pkgs/development/python-modules/sqlalchemy/default.nix
Original file line number Diff line number Diff line change
@@ -2,6 +2,7 @@
, mock
, pysqlite
, pytestCheckHook
, pytest_xdist
}:

buildPythonPackage rec {
@@ -15,9 +16,12 @@ buildPythonPackage rec {

checkInputs = [
pytestCheckHook
pytest_xdist
mock
] ++ lib.optional (!isPy3k) pysqlite;

pytestFlagsArray = [ "-n auto" ];

postInstall = ''
sed -e 's:--max-worker-restart=5::g' -i setup.cfg
'';
4 changes: 2 additions & 2 deletions pkgs/development/python-modules/wheel/default.nix
Original file line number Diff line number Diff line change
@@ -7,14 +7,14 @@

buildPythonPackage rec {
pname = "wheel";
version = "0.35.1";
version = "0.36.2";
format = "other";

src = fetchFromGitHub {
owner = "pypa";
repo = pname;
rev = version;
sha256 = "uS+9a47ZopI0yGlEnJi421WyzS//8BxUvH25hX4BBL8=";
sha256 = "sha256-8lK2UvqBIxUYm6IOuT+Jk71wYbEEjvI7typS3749N9g=";
name = "${pname}-${version}-source";
};