5e7c2d6cef
GitOrigin-RevId: f99e5f03cc0aa231ab5950a15ed02afec45ed51a
45 lines
804 B
Nix
45 lines
804 B
Nix
{ lib
|
|
, buildPythonPackage
|
|
, fetchPypi
|
|
, setuptools-scm
|
|
, pythonOlder
|
|
, msprime
|
|
, numpy
|
|
, tskit
|
|
}:
|
|
|
|
buildPythonPackage rec {
|
|
pname = "pyslim";
|
|
version = "1.0.4";
|
|
format = "pyproject";
|
|
disabled = pythonOlder "3.7";
|
|
|
|
src = fetchPypi {
|
|
inherit pname version;
|
|
hash = "sha256-valAhPEVZNv/IYe85a88SGE+2/9O1omvBywz/HeeRco=";
|
|
};
|
|
|
|
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 ];
|
|
};
|
|
}
|