mirror of
https://github.com/NixOS/nixpkgs.git
synced 2025-01-28 07:43:43 +00:00
755b915a15
nix run nixpkgs#silver-searcher -- -G '\.nix$' -0l 'description.*"[Aa]n?' pkgs \ | xargs -0 nix run nixpkgs#gnused -- -i '' -Ee 's/(description.*")[Aa]n? (.)/\1\U\2/'
42 lines
766 B
Nix
42 lines
766 B
Nix
{
|
|
lib,
|
|
buildPythonPackage,
|
|
fetchFromGitLab,
|
|
numpy,
|
|
cvxopt,
|
|
python,
|
|
networkx,
|
|
}:
|
|
|
|
buildPythonPackage rec {
|
|
pname = "picos";
|
|
version = "2.0";
|
|
format = "setuptools";
|
|
|
|
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 = "Python interface to conic optimization solvers";
|
|
homepage = "https://gitlab.com/picos-api/picos";
|
|
license = licenses.gpl3;
|
|
maintainers = with maintainers; [ tobiasBora ];
|
|
};
|
|
}
|