about summary refs log tree commit diff
path: root/pkgs/development/python-modules/demes/default.nix
diff options
context:
space:
mode:
Diffstat (limited to 'pkgs/development/python-modules/demes/default.nix')
-rw-r--r--pkgs/development/python-modules/demes/default.nix33
1 files changed, 14 insertions, 19 deletions
diff --git a/pkgs/development/python-modules/demes/default.nix b/pkgs/development/python-modules/demes/default.nix
index 522b075d2a6e2..658acdb8156fd 100644
--- a/pkgs/development/python-modules/demes/default.nix
+++ b/pkgs/development/python-modules/demes/default.nix
@@ -1,13 +1,14 @@
-{ lib
-, buildPythonPackage
-, fetchPypi
-, setuptools-scm
-, ruamel-yaml
-, attrs
-, pythonOlder
-, pytest7CheckHook
-, pytest-xdist
-, numpy
+{
+  lib,
+  buildPythonPackage,
+  fetchPypi,
+  setuptools-scm,
+  ruamel-yaml,
+  attrs,
+  pythonOlder,
+  pytest7CheckHook,
+  pytest-xdist,
+  numpy,
 }:
 
 buildPythonPackage rec {
@@ -21,9 +22,7 @@ buildPythonPackage rec {
     hash = "sha256-nmE7ZbR126J3vKdR3h83qJ/V602Fa6J3M6IJnIqCNhc=";
   };
 
-  nativeBuildInputs = [
-    setuptools-scm
-  ];
+  nativeBuildInputs = [ setuptools-scm ];
 
   propagatedBuildInputs = [
     ruamel-yaml
@@ -41,13 +40,9 @@ buildPythonPackage rec {
     numpy
   ];
 
-  disabledTestPaths = [
-    "tests/test_spec.py"
-  ];
+  disabledTestPaths = [ "tests/test_spec.py" ];
 
-  pythonImportsCheck = [
-    "demes"
-  ];
+  pythonImportsCheck = [ "demes" ];
 
   meta = with lib; {
     description = "Tools for describing and manipulating demographic models";