Skip to content

Commit 4492ed1

Browse files
authored
Merge pull request NixOS#317828 from malob/unbreak-python3Packages-darwin
python3Packages: unbreak packages that no longer seem to be broken (mostly on Darwin)
2 parents 2887437 + 4721ab1 commit 4492ed1

File tree

32 files changed

+7
-70
lines changed

32 files changed

+7
-70
lines changed

pkgs/applications/science/physics/nnpdf/default.nix

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -60,7 +60,5 @@ stdenv.mkDerivation rec {
6060
license = licenses.gpl3Only;
6161
maintainers = [ maintainers.veprbl ];
6262
platforms = platforms.unix;
63-
# never built on aarch64-darwin since first introduction in nixpkgs
64-
broken = (stdenv.isDarwin && stdenv.isAarch64) || (stdenv.isLinux && stdenv.isAarch64);
6563
};
6664
}

pkgs/development/python-modules/dask-jobqueue/default.nix

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,4 @@
11
{
2-
stdenv,
32
lib,
43
buildPythonPackage,
54
cryptography,
@@ -79,7 +78,6 @@ buildPythonPackage rec {
7978
pythonImportsCheck = [ "dask_jobqueue" ];
8079

8180
meta = with lib; {
82-
broken = stdenv.isDarwin;
8381
description = "Deploy Dask on job schedulers like PBS, SLURM, and SGE";
8482
homepage = "https://github.com/dask/dask-jobqueue";
8583
license = licenses.bsd3;

pkgs/development/python-modules/dask-yarn/default.nix

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,6 @@
1111
grpcio,
1212
skein,
1313
pytestCheckHook,
14-
stdenv,
1514
}:
1615

1716
buildPythonPackage rec {
@@ -84,6 +83,5 @@ buildPythonPackage rec {
8483
homepage = "https://yarn.dask.org/";
8584
license = licenses.bsd3;
8685
maintainers = with maintainers; [ illustris ];
87-
broken = stdenv.isDarwin;
8886
};
8987
}

pkgs/development/python-modules/dbus-next/default.nix

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,4 @@
11
{
2-
stdenv,
32
lib,
43
buildPythonPackage,
54
fetchFromGitHub,
@@ -49,6 +48,5 @@ buildPythonPackage rec {
4948
changelog = "https://github.com/altdesktop/python-dbus-next/releases/tag/v${version}";
5049
license = licenses.mit;
5150
maintainers = with maintainers; [ sfrijters ];
52-
broken = stdenv.isDarwin;
5351
};
5452
}

pkgs/development/python-modules/ducc0/default.nix

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,4 @@
11
{
2-
stdenv,
32
lib,
43
buildPythonPackage,
54
fetchFromGitLab,
@@ -36,7 +35,6 @@ buildPythonPackage rec {
3635
pythonImportsCheck = [ "ducc0" ];
3736

3837
meta = with lib; {
39-
broken = stdenv.isDarwin;
4038
homepage = "https://gitlab.mpcdf.mpg.de/mtr/ducc";
4139
description = "Efficient algorithms for Fast Fourier transforms and more";
4240
license = licenses.gpl2Plus;

pkgs/development/python-modules/mouseinfo/default.nix

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,12 @@
11
{
2-
stdenv,
32
lib,
43
buildPythonPackage,
54
pyperclip,
65
fetchFromGitHub,
76
xlib,
87
pillow,
98
}:
10-
buildPythonPackage rec {
9+
buildPythonPackage {
1110
pname = "mouseinfo";
1211
version = "0.1.3";
1312

@@ -34,7 +33,6 @@ buildPythonPackage rec {
3433
];
3534

3635
meta = with lib; {
37-
broken = stdenv.isDarwin;
3836
description = "Application to display XY position and RGB color information for the pixel currently under the mouse. Works on Python 2 and 3";
3937
homepage = "https://github.com/asweigart/mouseinfo";
4038
license = licenses.gpl3;

pkgs/development/python-modules/netutils/default.nix

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,5 @@
11
{
22
lib,
3-
stdenv,
43
buildPythonPackage,
54
fetchFromGitHub,
65
jinja2,
@@ -66,6 +65,5 @@ buildPythonPackage rec {
6665
changelog = "https://github.com/networktocode/netutils/releases/tag/v${version}";
6766
license = licenses.asl20;
6867
maintainers = with maintainers; [ fab ];
69-
broken = stdenv.isDarwin;
7068
};
7169
}

pkgs/development/python-modules/numba-scipy/default.nix

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,4 @@
11
{
2-
stdenv,
32
lib,
43
buildPythonPackage,
54
fetchPypi,
@@ -39,7 +38,6 @@ buildPythonPackage rec {
3938
pythonImportsCheck = [ "numba_scipy" ];
4039

4140
meta = with lib; {
42-
broken = stdenv.isDarwin;
4341
description = "Extends Numba to make it aware of SciPy";
4442
homepage = "https://github.com/numba/numba-scipy";
4543
changelog = "https://github.com/numba/numba-scipy/blob/master/CHANGE_LOG";

pkgs/development/python-modules/omorfi/default.nix

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,6 @@
22
buildPythonPackage,
33
pkgs,
44
lib,
5-
stdenv,
65
hfst,
76
}:
87

@@ -26,7 +25,5 @@ buildPythonPackage rec {
2625
homepage = "https://github.com/flammie/omorfi";
2726
license = licenses.gpl3;
2827
maintainers = with maintainers; [ lurkki ];
29-
# Ofborg build error (hfst not found?)
30-
broken = stdenv.isDarwin;
3128
};
3229
}

pkgs/development/python-modules/oslo-concurrency/default.nix

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,4 @@
11
{
2-
stdenv,
32
lib,
43
buildPythonPackage,
54
fetchPypi,
@@ -71,7 +70,6 @@ buildPythonPackage rec {
7170
pythonImportsCheck = [ "oslo_concurrency" ];
7271

7372
meta = with lib; {
74-
broken = stdenv.isDarwin;
7573
description = "Oslo Concurrency library";
7674
mainProgram = "lockutils-wrapper";
7775
homepage = "https://github.com/openstack/oslo.concurrency";

0 commit comments

Comments
 (0)