nixpkgs/pkgs/development/python-modules/ecos/default.nix
Fabian Affolter 71ea77b4b0 python312Packages.ecos: 2.0.11 -> 2.0.13
Diff: embotech/ecos-python@refs/tags/v2.0.11...v2.0.13

Changelog: https://github.com/embotech/ecos-python/releases/tag/v2.0.13
2024-05-23 02:28:24 +02:00

46 lines
947 B
Nix

{
lib,
buildPythonPackage,
fetchFromGitHub,
oldest-supported-numpy,
pytestCheckHook,
pythonOlder,
scipy,
setuptools,
}:
buildPythonPackage rec {
pname = "ecos";
version = "2.0.13";
pyproject = true;
disabled = pythonOlder "3.7";
src = fetchFromGitHub {
owner = "embotech";
repo = "ecos-python";
rev = "refs/tags/v${version}";
hash = "sha256-3NcZBZ7fnwiMelGssa74b5PgmXmNZhP4etNRpyrCkpo=";
fetchSubmodules = true;
};
build-system = [ setuptools ];
dependencies = [
oldest-supported-numpy
scipy
];
nativeCheckInputs = [ pytestCheckHook ];
pythonImportsCheck = [ "ecos" ];
meta = with lib; {
description = "Python interface for ECOS";
homepage = "https://github.com/embotech/ecos-python";
changelog = "https://github.com/embotech/ecos-python/releases/tag/v${version}";
license = licenses.gpl3Only;
maintainers = with maintainers; [ drewrisinger ];
};
}