9c6ee729d6
GitOrigin-RevId: 6cee3b5893090b0f5f0a06b4cf42ca4e60e5d222
44 lines
847 B
Nix
44 lines
847 B
Nix
{ lib
|
|
, buildPythonPackage
|
|
, fetchPypi
|
|
, msgpack
|
|
, numpy
|
|
, unittestCheckHook
|
|
}:
|
|
|
|
buildPythonPackage rec {
|
|
pname = "mmtf-python";
|
|
version = "1.1.3";
|
|
format = "setuptools";
|
|
|
|
src = fetchPypi {
|
|
inherit pname version;
|
|
hash = "sha256-EqAv4bcTHworjORbRvHgzdKLmBj+RJlVTCaISYfqDDI=";
|
|
};
|
|
|
|
propagatedBuildInputs = [
|
|
msgpack
|
|
numpy
|
|
];
|
|
|
|
nativeCheckInputs = [
|
|
unittestCheckHook
|
|
];
|
|
|
|
unittestFlagsArray = [
|
|
"-s mmtf/tests"
|
|
"-p \"*_tests.py\""
|
|
];
|
|
|
|
pythonImportsCheck = [
|
|
"mmtf"
|
|
];
|
|
|
|
meta = {
|
|
description = "The python implementation of the MMTF API, decoder and encoder";
|
|
homepage = "https://github.com/rcsb/mmtf-python";
|
|
changelog = "https://github.com/rcsb/mmtf-python/releases/tag/v${version}";
|
|
license = lib.licenses.asl20;
|
|
maintainers = with lib.maintainers; [ natsukium ];
|
|
};
|
|
}
|