mirror of
https://github.com/NixOS/nixpkgs.git
synced 2025-01-10 06:55:10 +00:00
ddc7a6c810
Co-authored-by: OTABI Tomoya <tomoya.otabi@gmail.com>
46 lines
804 B
Nix
46 lines
804 B
Nix
{ lib
|
|
, buildPythonPackage
|
|
, fetchPypi
|
|
, setuptools-scm
|
|
, pythonOlder
|
|
, msprime
|
|
, numpy
|
|
, tskit
|
|
}:
|
|
|
|
buildPythonPackage rec {
|
|
pname = "pyslim";
|
|
version = "1.0.3";
|
|
format = "pyproject";
|
|
disabled = pythonOlder "3.7";
|
|
|
|
src = fetchPypi {
|
|
inherit pname version;
|
|
hash = "sha256-BRfv5AcdRpnvk7zGeYYWweh+foFEOSZjz3pTjX8KOnA=";
|
|
};
|
|
|
|
nativeBuildInputs = [
|
|
setuptools-scm
|
|
];
|
|
|
|
propagatedBuildInputs = [
|
|
msprime
|
|
tskit
|
|
numpy
|
|
];
|
|
|
|
# Requires non-packaged software SLiM
|
|
doCheck = false;
|
|
|
|
pythonImportsCheck = [
|
|
"pyslim"
|
|
];
|
|
|
|
meta = with lib; {
|
|
description = "Tools for dealing with tree sequences coming to and from SLiM";
|
|
homepage = "https://github.com/tskit-dev/pyslim";
|
|
license = licenses.mit;
|
|
maintainers = with maintainers; [ alxsimon ];
|
|
};
|
|
}
|