14 buildPythonPackage rec {
18 disabled = pythonOlder "3.7";
21 inherit pname version;
22 hash = "sha256-nmE7ZbR126J3vKdR3h83qJ/V602Fa6J3M6IJnIqCNhc=";
25 nativeBuildInputs = [ setuptools-scm ];
27 propagatedBuildInputs = [
33 # remove coverage arguments to pytest
34 sed -i '/--cov/d' setup.cfg
43 disabledTestPaths = [ "tests/test_spec.py" ];
45 pythonImportsCheck = [ "demes" ];
48 description = "Tools for describing and manipulating demographic models";
49 mainProgram = "demes";
50 homepage = "https://github.com/popsim-consortium/demes-python";
51 license = licenses.isc;
52 maintainers = with maintainers; [ alxsimon ];