diff options
| author | Fabian Affolter <mail@fabian-affolter.ch> | 2023-08-11 09:39:30 +0200 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2023-08-11 09:39:30 +0200 |
| commit | 00c02166f5283f705c165668bc97e0f413723e19 (patch) | |
| tree | 19c4ff70fa86b45b7ff8d1026d062c3f2ca0f385 /pkgs/development/python-modules/bx-python | |
| parent | 9083fe415bd7f7296da127274de97ecda9c07d23 (diff) | |
python310Packages.bx-python: equalize content
Diffstat (limited to 'pkgs/development/python-modules/bx-python')
| -rw-r--r-- | pkgs/development/python-modules/bx-python/default.nix | 36 |
1 files changed, 29 insertions, 7 deletions
diff --git a/pkgs/development/python-modules/bx-python/default.nix b/pkgs/development/python-modules/bx-python/default.nix index 3d26ca5078e8..56a8a9a151e9 100644 --- a/pkgs/development/python-modules/bx-python/default.nix +++ b/pkgs/development/python-modules/bx-python/default.nix @@ -1,5 +1,14 @@ -{ lib, fetchFromGitHub, buildPythonPackage, pythonOlder, numpy, cython, zlib, six -, python-lzo, nose }: +{ lib +, fetchFromGitHub +, buildPythonPackage +, pythonOlder +, numpy +, cython +, zlib +, six +, python-lzo +, nose +}: buildPythonPackage rec { pname = "bx-python"; @@ -13,10 +22,23 @@ buildPythonPackage rec { hash = "sha256-j2GKj2IGDBk4LBnISRx6ZW/lh5VSdQBasC0gCRj0Fiw="; }; - nativeBuildInputs = [ cython ]; - buildInputs = [ zlib ]; - propagatedBuildInputs = [ numpy six python-lzo ]; - nativeCheckInputs = [ nose ]; + nativeBuildInputs = [ + cython + ]; + + buildInputs = [ + zlib + ]; + + propagatedBuildInputs = [ + numpy + six + python-lzo + ]; + + nativeCheckInputs = [ + nose + ]; postInstall = '' cp -r scripts/* $out/bin @@ -33,7 +55,7 @@ buildPythonPackage rec { homepage = "https://github.com/bxlab/bx-python"; changelog = "https://github.com/bxlab/bx-python/releases/tag/v${version}"; license = licenses.mit; - maintainers = [ maintainers.jbedo ]; + maintainers = with maintainers; [ jbedo ]; platforms = [ "x86_64-linux" ]; }; } |
