My personal project and infrastructure archive
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
nomicon/pkgs/development/python-modules/ecos/default.nix

51 lines
1003 B

{ lib
, pythonOlder
, buildPythonPackage
, fetchFromGitHub
, pkgs
, numpy
, scipy
# check inputs
, nose
}:
buildPythonPackage rec {
pname = "ecos";
version = "2.0.8";
disabled = pythonOlder "3.6";
src = fetchFromGitHub {
owner = "embotech";
repo = "ecos-python";
rev = version;
sha256 = "sha256-2OJqbcOZceeD2fO5cu9fohuUVaA2LwQOQSWR4jRv3mk=";
fetchSubmodules = true;
};
prePatch = ''
echo '__version__ = "${version}"' >> ./src/ecos/version.py
'';
propagatedBuildInputs = [
numpy
scipy
];
checkInputs = [ nose ];
checkPhase = ''
# Run tests
cd ./src
nosetests test_interface.py test_interface_bb.py
'';
pythonImportsCheck = [ "ecos" ];
meta = with lib; {
description = "Python package for ECOS: Embedded Cone Solver";
downloadPage = "https://github.com/embotech/ecos-python/releases";
homepage = pkgs.ecos.meta.homepage;
license = licenses.asl20;
maintainers = with maintainers; [ drewrisinger ];
};
}