10 buildPythonPackage rec {
15 disabled = pythonOlder "3.7";
17 src = fetchFromGitHub {
18 owner = "jensengroup";
20 rev = "refs/tags/v${version}";
21 hash = "sha256-EJQqCe4WPOpqsSxxfbTjF0qETpSPYqpixpylweTCjko=";
24 nativeBuildInputs = [ setuptools ];
26 nativeCheckInputs = [ pytestCheckHook ];
28 pythonImportsCheck = [ "propka" ];
31 description = "Predictor of the pKa values of ionizable groups in proteins and protein-ligand complexes based in the 3D structure";
32 mainProgram = "propka3";
33 homepage = "https://github.com/jensengroup/propka";
34 changelog = "https://github.com/jensengroup/propka/releases/tag/v${version}";
35 license = licenses.lgpl21Only;
36 maintainers = with maintainers; [ natsukium ];