nixpkgs/pkgs/development/python-modules/demesdraw/default.nix
stuebinm ff1a94e523 treewide: add meta.mainProgram to packages with a single binary
The nixpkgs-unstable channel's programs.sqlite was used to identify
packages producing exactly one binary, and these automatically added
to their package definitions wherever possible.
2024-03-19 03:14:51 +01:00

65 lines
1.2 KiB
Nix

{ lib
, stdenv
, buildPythonPackage
, fetchPypi
, setuptools-scm
, demes
, matplotlib
, numpy
, scipy
, pythonOlder
, pytestCheckHook
, pytest-xdist
, mpmath
}:
buildPythonPackage rec {
pname = "demesdraw";
version = "0.4.0";
format = "pyproject";
disabled = pythonOlder "3.7";
src = fetchPypi {
inherit pname version;
hash = "sha256-n7dz+kYf2yyr66TBx452W6z4qT6bT81u0J4aMAYuGCc=";
};
nativeBuildInputs = [
setuptools-scm
];
propagatedBuildInputs = [
demes
matplotlib
numpy
scipy
];
postPatch = ''
# remove coverage arguments to pytest
sed -i '/--cov/d' setup.cfg
'';
# This variable is needed to suppress the "Trace/BPT trap: 5" error in Darwin's checkPhase.
# Not sure of the details, but we can avoid it by changing the matplotlib backend during testing.
env.MPLBACKEND = lib.optionalString stdenv.isDarwin "Agg";
nativeCheckInputs = [
pytestCheckHook
pytest-xdist
mpmath
];
pythonImportsCheck = [
"demesdraw"
];
meta = with lib; {
description = "Drawing functions for Demes demographic models";
mainProgram = "demesdraw";
homepage = "https://github.com/grahamgower/demesdraw";
license = licenses.isc;
maintainers = with maintainers; [ alxsimon ];
};
}