nixpkgs/pkgs/development/python-modules/ecos/default.nix
Guillaume Girol 33afbf39f6 treewide: switch to nativeCheckInputs
checkInputs used to be added to nativeBuildInputs. Now we have
nativeCheckInputs to do that instead. Doing this treewide change allows
to keep hashes identical to before the introduction of
nativeCheckInputs.
2023-01-21 12:00:00 +00:00

60 lines
1.2 KiB
Nix

{ lib
, buildPythonPackage
, fetchFromGitHub
, fetchpatch
, nose
, numpy
, pythonOlder
, scipy
}:
buildPythonPackage rec {
pname = "ecos";
version = "2.0.10";
format = "setuptools";
disabled = pythonOlder "3.6";
src = fetchFromGitHub {
owner = "embotech";
repo = "ecos-python";
rev = "v${version}";
sha256 = "sha256-TPxrTyVZ1KXgPoDbZZqXT5+NEIEndg9qepujqFQwK+Q=";
fetchSubmodules = true;
};
patches = [
# Fix for test_interface_bb.py tests
(fetchpatch {
name = "test_interface_bb_use_nparray.patch";
url = "https://github.com/embotech/ecos-python/commit/4440dcb7ddbd92217bc83d8916b72b61537dffbf.patch";
hash = "sha256-pcTPviK916jzCLllRhopbC9wDHv+aS6GmV/92sUwzHc=";
})
];
propagatedBuildInputs = [
numpy
scipy
];
nativeCheckInputs = [
nose
];
checkPhase = ''
cd ./src
nosetests test_interface.py test_interface_bb.py
'';
pythonImportsCheck = [
"ecos"
];
meta = with lib; {
description = "Python package for ECOS: Embedded Cone Solver";
homepage = "https://github.com/embotech/ecos-python";
license = licenses.gpl3Only;
maintainers = with maintainers; [ drewrisinger ];
};
}