blob: 71c6c9db2fad774ab39a212a07619a5ab8928aee (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
|
{
lib,
buildPythonPackage,
fetchFromGitHub,
setuptools,
pytestCheckHook,
}:
buildPythonPackage rec {
pname = "propka";
version = "3.5.1";
pyproject = true;
src = fetchFromGitHub {
owner = "jensengroup";
repo = "propka";
tag = "v${version}";
hash = "sha256-EJQqCe4WPOpqsSxxfbTjF0qETpSPYqpixpylweTCjko=";
};
nativeBuildInputs = [ setuptools ];
nativeCheckInputs = [ pytestCheckHook ];
pythonImportsCheck = [ "propka" ];
meta = {
description = "Predictor of the pKa values of ionizable groups in proteins and protein-ligand complexes based in the 3D structure";
mainProgram = "propka3";
homepage = "https://github.com/jensengroup/propka";
changelog = "https://github.com/jensengroup/propka/releases/tag/v${version}";
license = lib.licenses.lgpl21Only;
maintainers = with lib.maintainers; [ natsukium ];
};
}
|