1{ lib 2, buildPythonPackage 3, fetchPypi 4}: 5 6buildPythonPackage rec { 7 pname = "pysoma"; 8 version = "0.0.11"; 9 10 src = fetchPypi { 11 inherit pname version; 12 sha256 = "sha256-U/kLaO/GBpOa9mHHlYQiWSw7sVNPaMneDURoJBqqojo="; 13 }; 14 15 # Project has no test 16 doCheck = false; 17 pythonImportsCheck = [ "api" ]; 18 19 meta = with lib; { 20 description = "Python wrapper for the HTTP API provided by SOMA Connect"; 21 homepage = "https://pypi.org/project/pysoma"; 22 license = with licenses; [ mit ]; 23 maintainers = with maintainers; [ fab ]; 24 }; 25}