mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-17 19:21:04 +00:00
Merge pull request #317828 from malob/unbreak-python3Packages-darwin
python3Packages: unbreak packages that no longer seem to be broken (mostly on Darwin)
This commit is contained in:
commit
4492ed1022
|
@ -60,7 +60,5 @@ stdenv.mkDerivation rec {
|
|||
license = licenses.gpl3Only;
|
||||
maintainers = [ maintainers.veprbl ];
|
||||
platforms = platforms.unix;
|
||||
# never built on aarch64-darwin since first introduction in nixpkgs
|
||||
broken = (stdenv.isDarwin && stdenv.isAarch64) || (stdenv.isLinux && stdenv.isAarch64);
|
||||
};
|
||||
}
|
||||
|
|
|
@ -1,5 +1,4 @@
|
|||
{
|
||||
stdenv,
|
||||
lib,
|
||||
buildPythonPackage,
|
||||
cryptography,
|
||||
|
@ -79,7 +78,6 @@ buildPythonPackage rec {
|
|||
pythonImportsCheck = [ "dask_jobqueue" ];
|
||||
|
||||
meta = with lib; {
|
||||
broken = stdenv.isDarwin;
|
||||
description = "Deploy Dask on job schedulers like PBS, SLURM, and SGE";
|
||||
homepage = "https://github.com/dask/dask-jobqueue";
|
||||
license = licenses.bsd3;
|
||||
|
|
|
@ -11,7 +11,6 @@
|
|||
grpcio,
|
||||
skein,
|
||||
pytestCheckHook,
|
||||
stdenv,
|
||||
}:
|
||||
|
||||
buildPythonPackage rec {
|
||||
|
@ -84,6 +83,5 @@ buildPythonPackage rec {
|
|||
homepage = "https://yarn.dask.org/";
|
||||
license = licenses.bsd3;
|
||||
maintainers = with maintainers; [ illustris ];
|
||||
broken = stdenv.isDarwin;
|
||||
};
|
||||
}
|
||||
|
|
|
@ -1,5 +1,4 @@
|
|||
{
|
||||
stdenv,
|
||||
lib,
|
||||
buildPythonPackage,
|
||||
fetchFromGitHub,
|
||||
|
@ -49,6 +48,5 @@ buildPythonPackage rec {
|
|||
changelog = "https://github.com/altdesktop/python-dbus-next/releases/tag/v${version}";
|
||||
license = licenses.mit;
|
||||
maintainers = with maintainers; [ sfrijters ];
|
||||
broken = stdenv.isDarwin;
|
||||
};
|
||||
}
|
||||
|
|
|
@ -1,5 +1,4 @@
|
|||
{
|
||||
stdenv,
|
||||
lib,
|
||||
buildPythonPackage,
|
||||
fetchFromGitLab,
|
||||
|
@ -36,7 +35,6 @@ buildPythonPackage rec {
|
|||
pythonImportsCheck = [ "ducc0" ];
|
||||
|
||||
meta = with lib; {
|
||||
broken = stdenv.isDarwin;
|
||||
homepage = "https://gitlab.mpcdf.mpg.de/mtr/ducc";
|
||||
description = "Efficient algorithms for Fast Fourier transforms and more";
|
||||
license = licenses.gpl2Plus;
|
||||
|
|
|
@ -1,5 +1,4 @@
|
|||
{
|
||||
stdenv,
|
||||
lib,
|
||||
buildPythonPackage,
|
||||
pyperclip,
|
||||
|
@ -7,7 +6,7 @@
|
|||
xlib,
|
||||
pillow,
|
||||
}:
|
||||
buildPythonPackage rec {
|
||||
buildPythonPackage {
|
||||
pname = "mouseinfo";
|
||||
version = "0.1.3";
|
||||
|
||||
|
@ -34,7 +33,6 @@ buildPythonPackage rec {
|
|||
];
|
||||
|
||||
meta = with lib; {
|
||||
broken = stdenv.isDarwin;
|
||||
description = "Application to display XY position and RGB color information for the pixel currently under the mouse. Works on Python 2 and 3";
|
||||
homepage = "https://github.com/asweigart/mouseinfo";
|
||||
license = licenses.gpl3;
|
||||
|
|
|
@ -1,6 +1,5 @@
|
|||
{
|
||||
lib,
|
||||
stdenv,
|
||||
buildPythonPackage,
|
||||
fetchFromGitHub,
|
||||
jinja2,
|
||||
|
@ -66,6 +65,5 @@ buildPythonPackage rec {
|
|||
changelog = "https://github.com/networktocode/netutils/releases/tag/v${version}";
|
||||
license = licenses.asl20;
|
||||
maintainers = with maintainers; [ fab ];
|
||||
broken = stdenv.isDarwin;
|
||||
};
|
||||
}
|
||||
|
|
|
@ -1,5 +1,4 @@
|
|||
{
|
||||
stdenv,
|
||||
lib,
|
||||
buildPythonPackage,
|
||||
fetchPypi,
|
||||
|
@ -39,7 +38,6 @@ buildPythonPackage rec {
|
|||
pythonImportsCheck = [ "numba_scipy" ];
|
||||
|
||||
meta = with lib; {
|
||||
broken = stdenv.isDarwin;
|
||||
description = "Extends Numba to make it aware of SciPy";
|
||||
homepage = "https://github.com/numba/numba-scipy";
|
||||
changelog = "https://github.com/numba/numba-scipy/blob/master/CHANGE_LOG";
|
||||
|
|
|
@ -2,7 +2,6 @@
|
|||
buildPythonPackage,
|
||||
pkgs,
|
||||
lib,
|
||||
stdenv,
|
||||
hfst,
|
||||
}:
|
||||
|
||||
|
@ -26,7 +25,5 @@ buildPythonPackage rec {
|
|||
homepage = "https://github.com/flammie/omorfi";
|
||||
license = licenses.gpl3;
|
||||
maintainers = with maintainers; [ lurkki ];
|
||||
# Ofborg build error (hfst not found?)
|
||||
broken = stdenv.isDarwin;
|
||||
};
|
||||
}
|
||||
|
|
|
@ -1,5 +1,4 @@
|
|||
{
|
||||
stdenv,
|
||||
lib,
|
||||
buildPythonPackage,
|
||||
fetchPypi,
|
||||
|
@ -71,7 +70,6 @@ buildPythonPackage rec {
|
|||
pythonImportsCheck = [ "oslo_concurrency" ];
|
||||
|
||||
meta = with lib; {
|
||||
broken = stdenv.isDarwin;
|
||||
description = "Oslo Concurrency library";
|
||||
mainProgram = "lockutils-wrapper";
|
||||
homepage = "https://github.com/openstack/oslo.concurrency";
|
||||
|
|
|
@ -59,6 +59,5 @@ buildPythonPackage rec {
|
|||
homepage = "https://github.com/openstack/oslo.log";
|
||||
license = licenses.asl20;
|
||||
maintainers = teams.openstack.members;
|
||||
broken = stdenv.isDarwin;
|
||||
};
|
||||
}
|
||||
|
|
|
@ -1,5 +1,4 @@
|
|||
{
|
||||
stdenv,
|
||||
lib,
|
||||
buildPythonPackage,
|
||||
fetchPypi,
|
||||
|
@ -70,6 +69,5 @@ buildPythonPackage rec {
|
|||
changelog = "https://github.com/scikit-tda/persim/releases/tag/v${version}";
|
||||
license = licenses.mit;
|
||||
maintainers = with maintainers; [ ];
|
||||
broken = stdenv.isDarwin;
|
||||
};
|
||||
}
|
||||
|
|
|
@ -1,5 +1,4 @@
|
|||
{
|
||||
stdenv,
|
||||
lib,
|
||||
async-timeout,
|
||||
buildPythonPackage,
|
||||
|
@ -49,7 +48,6 @@ buildPythonPackage rec {
|
|||
pythonImportsCheck = [ "pescea" ];
|
||||
|
||||
meta = with lib; {
|
||||
broken = stdenv.isDarwin;
|
||||
description = "Python interface to Escea fireplaces";
|
||||
homepage = "https://github.com/lazdavila/pescea";
|
||||
license = licenses.gpl3Plus;
|
||||
|
|
|
@ -1,5 +1,4 @@
|
|||
{
|
||||
stdenv,
|
||||
lib,
|
||||
buildPythonPackage,
|
||||
fetchPypi,
|
||||
|
@ -19,7 +18,6 @@ buildPythonPackage rec {
|
|||
doCheck = false;
|
||||
|
||||
meta = with lib; {
|
||||
broken = stdenv.isDarwin;
|
||||
description = "Cross-platform system power status information";
|
||||
homepage = "https://github.com/Kentzo/Power";
|
||||
license = licenses.mit;
|
||||
|
|
|
@ -1,6 +1,5 @@
|
|||
{
|
||||
lib,
|
||||
stdenv,
|
||||
bash,
|
||||
buildPythonPackage,
|
||||
fetchFromGitHub,
|
||||
|
@ -89,6 +88,5 @@ buildPythonPackage rec {
|
|||
changelog = "https://github.com/abhinavsingh/proxy.py/releases/tag/v${version}";
|
||||
license = with licenses; [ bsd3 ];
|
||||
maintainers = with maintainers; [ fab ];
|
||||
broken = (stdenv.isLinux && stdenv.isAarch64) || stdenv.isDarwin;
|
||||
};
|
||||
}
|
||||
|
|
|
@ -58,7 +58,6 @@ let
|
|||
changelog = "https://github.com/PyDMD/PyDMD/releases/tag/v${version}";
|
||||
license = licenses.mit;
|
||||
maintainers = with maintainers; [ yl3dy ];
|
||||
broken = stdenv.hostPlatform.isAarch64;
|
||||
};
|
||||
};
|
||||
in
|
||||
|
|
|
@ -1,5 +1,4 @@
|
|||
{
|
||||
stdenv,
|
||||
lib,
|
||||
buildPythonPackage,
|
||||
fetchFromGitHub,
|
||||
|
@ -13,7 +12,7 @@
|
|||
}:
|
||||
|
||||
let
|
||||
pylibjpeg-data = buildPythonPackage rec {
|
||||
pylibjpeg-data = buildPythonPackage {
|
||||
pname = "pylibjpeg-data";
|
||||
version = "1.0.0dev0";
|
||||
pyproject = true;
|
||||
|
@ -64,8 +63,5 @@ buildPythonPackage rec {
|
|||
changelog = "https://github.com/pydicom/pylibjpeg/releases/tag/v${version}";
|
||||
license = licenses.mit;
|
||||
maintainers = with maintainers; [ bcdarwin ];
|
||||
# several test failures of form
|
||||
# "pydicom.errors.InvalidDicomError: File is missing DICOM File Meta Information header or the 'DICM' prefix is missing from the header. ..."
|
||||
broken = stdenv.isDarwin;
|
||||
};
|
||||
}
|
||||
|
|
|
@ -1,6 +1,5 @@
|
|||
{
|
||||
lib,
|
||||
stdenv,
|
||||
buildPythonPackage,
|
||||
fetchFromGitHub,
|
||||
poetry-core,
|
||||
|
@ -88,7 +87,5 @@ buildPythonPackage rec {
|
|||
changelog = "https://github.com/pydicom/pynetdicom/releases/tag/v${version}";
|
||||
license = with licenses; [ mit ];
|
||||
maintainers = with maintainers; [ fab ];
|
||||
# Tests are not passing on Darwin/Aarch64, thus it's assumed that it doesn't work
|
||||
broken = stdenv.isDarwin || stdenv.isAarch64;
|
||||
};
|
||||
}
|
||||
|
|
|
@ -1,6 +1,5 @@
|
|||
{
|
||||
lib,
|
||||
stdenv,
|
||||
buildPythonPackage,
|
||||
fetchPypi,
|
||||
pythonOlder,
|
||||
|
@ -32,6 +31,5 @@ buildPythonPackage rec {
|
|||
changelog = "https://github.com/giampaolo/pysendfile/blob/release-${version}/HISTORY.rst";
|
||||
license = licenses.mit;
|
||||
maintainers = with maintainers; [ ];
|
||||
broken = stdenv.isDarwin;
|
||||
};
|
||||
}
|
||||
|
|
|
@ -1,6 +1,5 @@
|
|||
{
|
||||
lib,
|
||||
stdenv,
|
||||
buildPythonPackage,
|
||||
fetchPypi,
|
||||
pyannotate,
|
||||
|
@ -32,7 +31,6 @@ buildPythonPackage rec {
|
|||
pythonImportsCheck = [ "pytest_annotate" ];
|
||||
|
||||
meta = with lib; {
|
||||
broken = stdenv.isDarwin;
|
||||
description = "Generate PyAnnotate annotations from your pytest tests";
|
||||
homepage = "https://github.com/kensho-technologies/pytest-annotate";
|
||||
license = licenses.asl20;
|
||||
|
|
|
@ -1,5 +1,4 @@
|
|||
{
|
||||
stdenv,
|
||||
lib,
|
||||
isPy3k,
|
||||
buildPythonPackage,
|
||||
|
@ -30,7 +29,6 @@ buildPythonPackage rec {
|
|||
pythonImportsCheck = [ "application" ];
|
||||
|
||||
meta = with lib; {
|
||||
broken = stdenv.isDarwin;
|
||||
description = "Collection of modules that are useful when building python applications";
|
||||
homepage = "https://github.com/AGProjects/python3-application";
|
||||
license = licenses.lgpl21Plus;
|
||||
|
|
|
@ -1,6 +1,5 @@
|
|||
{
|
||||
lib,
|
||||
stdenv,
|
||||
fetchFromGitHub,
|
||||
buildPythonPackage,
|
||||
pythonOlder,
|
||||
|
@ -11,7 +10,7 @@
|
|||
texlive,
|
||||
}:
|
||||
|
||||
buildPythonPackage rec {
|
||||
buildPythonPackage {
|
||||
pname = "pytikz-allefeld"; # "pytikz" on pypi is a different module
|
||||
version = "unstable-2022-11-01";
|
||||
pyproject = true;
|
||||
|
@ -54,6 +53,5 @@ buildPythonPackage rec {
|
|||
description = "Python interface to TikZ";
|
||||
license = licenses.gpl3;
|
||||
maintainers = with maintainers; [ pbsds ];
|
||||
broken = stdenv.isDarwin;
|
||||
};
|
||||
}
|
||||
|
|
|
@ -1,9 +1,7 @@
|
|||
{
|
||||
stdenv,
|
||||
lib,
|
||||
buildPythonPackage,
|
||||
fetchPypi,
|
||||
espeak-ng,
|
||||
}:
|
||||
|
||||
buildPythonPackage rec {
|
||||
|
@ -22,7 +20,6 @@ buildPythonPackage rec {
|
|||
doCheck = false;
|
||||
|
||||
meta = with lib; {
|
||||
broken = stdenv.isDarwin;
|
||||
description = "Offline text-to-speech synthesis library";
|
||||
homepage = "https://github.com/nateshmbhat/pyttsx3";
|
||||
license = licenses.mpl20;
|
||||
|
|
|
@ -1,5 +1,4 @@
|
|||
{
|
||||
stdenv,
|
||||
lib,
|
||||
buildPythonPackage,
|
||||
fetchFromGitHub,
|
||||
|
@ -38,6 +37,5 @@ buildPythonPackage rec {
|
|||
homepage = "https://scoding.de/ropper/";
|
||||
license = licenses.bsd3;
|
||||
maintainers = with maintainers; [ bennofs ];
|
||||
broken = stdenv.isDarwin;
|
||||
};
|
||||
}
|
||||
|
|
|
@ -1,5 +1,4 @@
|
|||
{
|
||||
stdenv,
|
||||
lib,
|
||||
buildPythonPackage,
|
||||
fetchPypi,
|
||||
|
@ -36,7 +35,6 @@ buildPythonPackage rec {
|
|||
'';
|
||||
|
||||
meta = with lib; {
|
||||
broken = (stdenv.isLinux && stdenv.isAarch64) || stdenv.isDarwin;
|
||||
homepage = "https://www.github.com/SethMichaelLarson/selectors2";
|
||||
description = "Back-ported, durable, and portable selectors";
|
||||
license = licenses.mit;
|
||||
|
|
|
@ -17,12 +17,9 @@
|
|||
python,
|
||||
sympy,
|
||||
meshio,
|
||||
mpi4py,
|
||||
psutil,
|
||||
openssh,
|
||||
pyvista,
|
||||
pytest,
|
||||
stdenv,
|
||||
}:
|
||||
|
||||
buildPythonPackage rec {
|
||||
|
@ -89,6 +86,5 @@ buildPythonPackage rec {
|
|||
description = "Simple Finite Elements in Python";
|
||||
license = lib.licenses.bsd3;
|
||||
maintainers = with lib.maintainers; [ wd15 ];
|
||||
broken = stdenv.isDarwin;
|
||||
};
|
||||
}
|
||||
|
|
|
@ -59,6 +59,6 @@ stdenv.mkDerivation {
|
|||
];
|
||||
homepage = "https://wiki.qt.io/Qt_for_Python";
|
||||
maintainers = with maintainers; [ gebner ];
|
||||
broken = stdenv.isDarwin || pythonAtLeast "3.12";
|
||||
broken = pythonAtLeast "3.12";
|
||||
};
|
||||
}
|
||||
|
|
|
@ -1,6 +1,5 @@
|
|||
{
|
||||
lib,
|
||||
stdenv,
|
||||
buildPythonPackage,
|
||||
commonmark,
|
||||
fetchFromGitHub,
|
||||
|
@ -16,7 +15,7 @@
|
|||
yapf,
|
||||
}:
|
||||
|
||||
buildPythonPackage rec {
|
||||
buildPythonPackage {
|
||||
pname = "sphinx-markdown-parser";
|
||||
version = "0.2.4";
|
||||
pyproject = true;
|
||||
|
@ -62,6 +61,5 @@ buildPythonPackage rec {
|
|||
homepage = "https://github.com/clayrisser/sphinx-markdown-parser";
|
||||
license = licenses.mit;
|
||||
maintainers = with maintainers; [ FlorianFranzen ];
|
||||
broken = (stdenv.isLinux && stdenv.isAarch64) || stdenv.isDarwin;
|
||||
};
|
||||
}
|
||||
|
|
|
@ -33,6 +33,5 @@ buildPythonPackage rec {
|
|||
homepage = "https://github.com/abcminiuser/python-elgato-streamdeck";
|
||||
license = licenses.mit;
|
||||
maintainers = with maintainers; [ majiir ];
|
||||
broken = stdenv.isDarwin;
|
||||
};
|
||||
}
|
||||
|
|
|
@ -1,6 +1,5 @@
|
|||
{
|
||||
lib,
|
||||
stdenv,
|
||||
buildPythonPackage,
|
||||
pythonOlder,
|
||||
fetchPypi,
|
||||
|
@ -79,7 +78,6 @@ buildPythonPackage rec {
|
|||
];
|
||||
|
||||
meta = with lib; {
|
||||
broken = stdenv.isDarwin;
|
||||
description = "Pipelines to manage continuous streams of data";
|
||||
homepage = "https://github.com/python-streamz/streamz";
|
||||
license = licenses.bsd3;
|
||||
|
|
|
@ -69,7 +69,8 @@ buildPythonPackage rec {
|
|||
description = "Vowpal Wabbit is a fast machine learning library for online learning, and this is the python wrapper for the project";
|
||||
homepage = "https://github.com/JohnLangford/vowpal_wabbit";
|
||||
license = licenses.bsd3;
|
||||
broken = stdenv.isAarch64;
|
||||
maintainers = with maintainers; [ teh ];
|
||||
# Test again when new version is released
|
||||
broken = stdenv.isLinux;
|
||||
};
|
||||
}
|
||||
|
|
|
@ -1,5 +1,4 @@
|
|||
{
|
||||
stdenv,
|
||||
lib,
|
||||
fetchFromGitHub,
|
||||
pythonOlder,
|
||||
|
@ -54,6 +53,5 @@ buildPythonPackage rec {
|
|||
homepage = "http://wrf-python.rtfd.org";
|
||||
license = licenses.asl20;
|
||||
maintainers = with maintainers; [ mhaselsteiner ];
|
||||
broken = stdenv.isDarwin;
|
||||
};
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue