Skip to content

Commit

Permalink
python312Packages.ecos: format with nixfmt
Browse files Browse the repository at this point in the history
  • Loading branch information
fabaff committed May 13, 2024
1 parent 465b050 commit 80b289d
Showing 1 changed file with 12 additions and 17 deletions.
29 changes: 12 additions & 17 deletions pkgs/development/python-modules/ecos/default.nix
Original file line number Diff line number Diff line change
@@ -1,11 +1,12 @@
{ lib
, buildPythonPackage
, fetchFromGitHub
, oldest-supported-numpy
, pytestCheckHook
, pythonOlder
, scipy
, setuptools
{
lib,
buildPythonPackage,
fetchFromGitHub,
oldest-supported-numpy,
pytestCheckHook,
pythonOlder,
scipy,
setuptools,
}:

buildPythonPackage rec {
Expand All @@ -23,22 +24,16 @@ buildPythonPackage rec {
fetchSubmodules = true;
};

build-system = [
setuptools
];
build-system = [ setuptools ];

dependencies = [
oldest-supported-numpy
scipy
];

nativeCheckInputs = [
pytestCheckHook
];
nativeCheckInputs = [ pytestCheckHook ];

pythonImportsCheck = [
"ecos"
];
pythonImportsCheck = [ "ecos" ];

meta = with lib; {
description = "Python interface for ECOS";
Expand Down

0 comments on commit 80b289d

Please sign in to comment.