mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-12-04 12:53:05 +00:00
33afbf39f6
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.
42 lines
740 B
Nix
42 lines
740 B
Nix
{ lib
|
|
, buildPythonPackage
|
|
, fetchFromGitLab
|
|
, numpy
|
|
, cvxopt
|
|
, python
|
|
, networkx
|
|
}:
|
|
|
|
buildPythonPackage rec {
|
|
pname = "picos";
|
|
version = "2.0";
|
|
|
|
src = fetchFromGitLab {
|
|
owner = "picos-api";
|
|
repo = "picos";
|
|
rev = "v${version}";
|
|
sha256 = "1k65iq791k5r08gh2kc6iz0xw1wyzqik19j6iam8ip732r7jm607";
|
|
};
|
|
|
|
# Needed only for the tests
|
|
nativeCheckInputs = [
|
|
networkx
|
|
];
|
|
|
|
propagatedBuildInputs = [
|
|
numpy
|
|
cvxopt
|
|
];
|
|
|
|
checkPhase = ''
|
|
${python.interpreter} test.py
|
|
'';
|
|
|
|
meta = with lib; {
|
|
description = "A Python interface to conic optimization solvers";
|
|
homepage = "https://gitlab.com/picos-api/picos";
|
|
license = licenses.gpl3;
|
|
maintainers = with maintainers; [ tobiasBora ];
|
|
};
|
|
}
|