16 buildPythonPackage rec {
17 pname = "apricot-select";
21 disabled = pythonOlder "3.7";
23 src = fetchFromGitHub {
26 rev = "refs/tags/${version}";
27 hash = "sha256-v9BHFxmlbwXVipPze/nV35YijdFBuka3gAl85AlsffQ=";
31 sed -i '/"nose"/d' setup.py
52 pythonImportsCheck = [
58 "tests/test_optimizers/test_knapsack_facility_location.py"
59 "tests/test_optimizers/test_knapsack_feature_based.py"
63 description = "Module for submodular optimization for the purpose of selecting subsets of massive data sets";
64 homepage = "https://github.com/jmschrei/apricot";
65 changelog = "https://github.com/jmschrei/apricot/releases/tag/${version}";
66 license = licenses.mit;
67 maintainers = with maintainers; [ fab ];