mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-16 23:03:40 +01:00
python3Packages.starfish: remove due to prolonged breakage
This commit is contained in:
parent
aa7f321052
commit
5473d0c554
2 changed files with 0 additions and 92 deletions
|
@ -1,90 +0,0 @@
|
|||
{ lib
|
||||
, buildPythonPackage
|
||||
, fetchPypi
|
||||
, click
|
||||
, dataclasses
|
||||
, jsonschema
|
||||
, matplotlib
|
||||
, numpy
|
||||
, pandas
|
||||
, regional
|
||||
, semantic-version
|
||||
, scikitimage
|
||||
, scikitlearn
|
||||
, scipy
|
||||
, showit
|
||||
, slicedimage
|
||||
, sympy
|
||||
, tqdm
|
||||
, trackpy
|
||||
, validators
|
||||
, xarray
|
||||
, ipywidgets
|
||||
, pytest
|
||||
, pythonOlder
|
||||
}:
|
||||
|
||||
buildPythonPackage rec {
|
||||
pname = "starfish";
|
||||
version = "0.2.1";
|
||||
|
||||
src = fetchPypi {
|
||||
inherit pname version;
|
||||
sha256 = "d635ef7b412b5781d6f98cd080b45098de6f3c7f7303e929b07c88b49d98ff12";
|
||||
};
|
||||
|
||||
propagatedBuildInputs = [
|
||||
click
|
||||
jsonschema
|
||||
matplotlib
|
||||
numpy
|
||||
pandas
|
||||
regional
|
||||
semantic-version
|
||||
scikitimage
|
||||
scikitlearn
|
||||
scipy
|
||||
showit
|
||||
slicedimage
|
||||
sympy
|
||||
tqdm
|
||||
trackpy
|
||||
validators
|
||||
xarray
|
||||
ipywidgets
|
||||
] ++ lib.optionals (pythonOlder "3.7") [ dataclasses ];
|
||||
|
||||
checkInputs = [
|
||||
pytest
|
||||
];
|
||||
|
||||
postConfigure = ''
|
||||
substituteInPlace REQUIREMENTS.txt \
|
||||
--replace "slicedimage==3.1.1" "slicedimage"
|
||||
'';
|
||||
|
||||
checkPhase = ''
|
||||
# a few tests < 5% require
|
||||
rm -rf starfish/test/full_pipelines/*
|
||||
pytest starfish \
|
||||
--ignore starfish/core/config/test/test_config.py \
|
||||
--ignore starfish/core/experiment/builder/test/test_build.py \
|
||||
--ignore starfish/core/experiment/test/test_experiment.py \
|
||||
--ignore starfish/core/image/_filter/test/test_reduce.py \
|
||||
--ignore starfish/core/image/_registration/_apply_transform/test/test_warp.py \
|
||||
--ignore starfish/core/image/_registration/_learn_transform/test/test_translation.py \
|
||||
--ignore starfish/core/image/_registration/test/test_transforms_list.py \
|
||||
--ignore starfish/core/imagestack/test/test_max_proj.py \
|
||||
--ignore starfish/core/recipe/test/test_recipe.py \
|
||||
--ignore starfish/core/recipe/test/test_runnable.py \
|
||||
--ignore starfish/core/test/test_profiler.py
|
||||
'';
|
||||
|
||||
meta = with lib; {
|
||||
description = "Pipelines and pipeline components for the analysis of image-based transcriptomics data";
|
||||
homepage = "https://spacetx-starfish.readthedocs.io/en/latest/";
|
||||
license = licenses.mit;
|
||||
maintainers = [ maintainers.costrouc ];
|
||||
broken = true; # incompatible with latest python-dateutil, scikit-image
|
||||
};
|
||||
}
|
|
@ -6768,8 +6768,6 @@ in {
|
|||
|
||||
sslyze = callPackage ../development/python-modules/sslyze { };
|
||||
|
||||
starfish = callPackage ../development/python-modules/starfish { };
|
||||
|
||||
starlette = callPackage ../development/python-modules/starlette { };
|
||||
|
||||
staticjinja = callPackage ../development/python-modules/staticjinja { };
|
||||
|
|
Loading…
Reference in a new issue