Files
nixpkgs/pkgs/development/python-modules/molbar/default.nix
T
Martin Weinelt abdf5dc772 treewide: remove pythonRelaxDepsHook references
It is is now provided automatically, when `pythonRelaxDeps` or
`pythonRemoveDeps` is defined through `mk-python-derivation`.
2024-06-14 14:52:00 +02:00

72 lines
1.1 KiB
Nix

{ buildPythonPackage
, python
, lib
, gfortran
, fetchgit
, cmake
, ninja
, networkx
, numpy
, pandas
, scipy
, tqdm
, joblib
, numba
, ase
, scikit-build
, dscribe
, pyyaml
, pytestCheckHook
}:
buildPythonPackage rec {
name = "MolBar";
version = "1.1.1";
src = fetchgit {
url = "https://git.rwth-aachen.de/bannwarthlab/molbar";
rev = "release_v${version}";
hash = "sha256-AFp2x8gil6nbZbgTZmuv+QAMImUMryyCc1by9U/ukYE=";
};
pyproject = true;
nativeBuildInputs = [
gfortran
];
pythonRelaxDeps = [ "networkx" ];
build-system = [
cmake
scikit-build
ninja
];
dependencies = [
networkx
numpy
pandas
scipy
tqdm
joblib
numba
ase
dscribe
pyyaml
];
nativeCheckInputs = [ pytestCheckHook ];
dontUseCmakeConfigure = true;
doCheck = false; # Doesn't find the fortran libs before installation
meta = with lib; {
description = "Unique molecular identifiers for molecular barcoding";
homepage = "https://git.rwth-aachen.de/bannwarthlab/molbar";
license = licenses.mit;
maintainers = [ maintainers.sheepforce ];
};
}