diff options
Diffstat (limited to 'pkgs/development/python-modules/msprime/default.nix')
| -rw-r--r-- | pkgs/development/python-modules/msprime/default.nix | 39 |
1 files changed, 18 insertions, 21 deletions
diff --git a/pkgs/development/python-modules/msprime/default.nix b/pkgs/development/python-modules/msprime/default.nix index c09b3b8d7609..087ee01fdc55 100644 --- a/pkgs/development/python-modules/msprime/default.nix +++ b/pkgs/development/python-modules/msprime/default.nix @@ -1,18 +1,19 @@ -{ lib -, buildPythonPackage -, demes -, fetchPypi -, gsl -, newick -, numpy -, oldest-supported-numpy -, pytest-xdist -, pytestCheckHook -, pythonOlder -, scipy -, setuptools-scm -, tskit -, wheel +{ + lib, + buildPythonPackage, + demes, + fetchPypi, + gsl, + newick, + numpy, + oldest-supported-numpy, + pytest-xdist, + pytestCheckHook, + pythonOlder, + scipy, + setuptools-scm, + tskit, + wheel, }: buildPythonPackage rec { @@ -34,9 +35,7 @@ buildPythonPackage rec { wheel ]; - buildInputs = [ - gsl - ]; + buildInputs = [ gsl ]; propagatedBuildInputs = [ numpy @@ -71,9 +70,7 @@ buildPythonPackage rec { preCheck = '' rm -r msprime ''; - pythonImportsCheck = [ - "msprime" - ]; + pythonImportsCheck = [ "msprime" ]; meta = with lib; { description = "Simulate genealogical trees and genomic sequence data using population genetic models"; |
