8 buildPythonPackage rec {
11 format = "setuptools";
13 disabled = pythonOlder "3.7";
15 src = fetchFromGitHub {
18 rev = "refs/tags/v${version}";
19 sha256 = "sha256-8tt68NLi5ewSKiHdu3gDawTBPylbDmB4zlUUqa7EQuY=";
22 # upstream has no tests
25 pythonImportsCheck = [ "boaapi" ];
28 homepage = "https://github.com/boalang/api-python";
29 description = "Python client API for communicating with Boa's (https://boa.cs.iastate.edu/) XML-RPC based services";
30 changelog = "https://github.com/boalang/api-python/blob/${src.rev}/Changes.txt";
31 license = lib.licenses.asl20;
32 maintainers = with lib.maintainers; [ swflint ];