depot/third_party/nixpkgs/pkgs/development/python-modules/daqp/default.nix

57 lines
1.1 KiB
Nix
Raw Normal View History

{
lib,
fetchFromGitHub,
buildPythonPackage,
unittestCheckHook,
cython_0,
setuptools,
wheel,
numpy,
}:
buildPythonPackage rec {
pname = "daqp";
version = "0.5.1";
format = "pyproject";
src = fetchFromGitHub {
owner = "darnstrom";
repo = "daqp";
rev = "5a15a3d16731d3d50f867218c1b281567db556fd";
hash = "sha256-in7Ci/wM7i0csJ4XVfo1lboWOyfuuU+8E+TzGmMV3x0=";
};
sourceRoot = "${src.name}/interfaces/daqp-python";
postPatch = ''
sed -i 's|../../../daqp|../..|' setup.py
sed -i 's|if src_path and os.path.exists(src_path):|if False:|' setup.py
'';
nativeCheckInputs = [ unittestCheckHook ];
unittestFlagsArray = [
"-s"
"test"
"-p"
"'*.py'"
"-v"
];
nativeBuildInputs = [
cython_0
setuptools
wheel
];
propagatedBuildInputs = [ numpy ];
pythonImportsCheck = [ "daqp" ];
meta = with lib; {
description = "Dual active-set algorithm for convex quadratic programming";
homepage = "https://github.com/darnstrom/daqp";
license = licenses.mit;
maintainers = with maintainers; [ renesat ];
};
}